12345678910111213141516171819202122 |
- /**视图资源配置 */
- export interface _IViewResConfig {
- /**模型 */
- model: Array<string>,
- /**音乐 */
- music: Array<string>,
- /**视图 */
- view: Object,
- }
- /**加载页配置 */
- export interface _ILoadingView {
- /**视图资源配置 */
- viewResConfig: _IViewResConfig,
- /**超时 */
- overtime: number,
- /**成功回调 */
- success: Function,
- /**失败回调 */
- fail: Function,
- }
|