UNPKG

424 BTypeScriptView Raw
1/**
2 * A function that will be executed when an application is initialized.
3 * @experimental
4 */
5export declare const APP_INITIALIZER: any;
6/**
7 * A class that reflects the state of running {@link APP_INITIALIZER}s.
8 *
9 * @experimental
10 */
11export declare class ApplicationInitStatus {
12 private _donePromise;
13 private _done;
14 constructor(appInits: (() => any)[]);
15 done: boolean;
16 donePromise: Promise<any>;
17}