UNPKG

559 BTypeScriptView Raw
1import 'aurelia-polyfills';
2import {
3 PLATFORM,
4 isInitialized
5} from 'aurelia-pal';
6
7/**
8 * Manually bootstraps an application.
9 * @param configure A callback which passes an Aurelia instance to the developer to manually configure and start up the app.
10 * @return A Promise that completes when configuration is done.
11 */
12export declare function bootstrap(configure: Function): Promise<void>;
13
14/**
15 * A promise that represents the bootstrapper's startup process.
16 * It resolves when the process has finished starting.
17 */
18export declare const starting: any;
\No newline at end of file