1 | export declare const addPending: (promise: Promise<any>) => void;
|
2 | export declare const removeFromPending: (promise: Promise<any>) => void;
|
3 | export declare const isItReady: () => boolean;
|
4 | /**
|
5 | * waits for all necessary imports to be fulfilled
|
6 | */
|
7 | export declare const done: () => Promise<void>;
|