UNPKG

502 BTypeScriptView Raw
1export declare class InitMoudle {
2 static initLoad: {
3 func: (...args: any[]) => Promise<any>;
4 caller: Object;
5 args: any[];
6 }[];
7 static regist(caller: any, func: (...args: any[]) => Promise<any>, ...args: any[]): void;
8 static initStep: number;
9 static initWait: number;
10 static wait(num: number): Promise<unknown>;
11 static startApp(): Promise<boolean>;
12 private static doWork;
13 private static checkStep;
14 private static setStep;
15}