aurelia-bootstrapper-webpack
Version:
Sets up the default configuration for the aurelia framework and gets you up and running quick and easy.
14 lines (13 loc) • 445 B
TypeScript
import 'aurelia-polyfills';
import {
initialize
} from 'aurelia-pal-browser';
import {
WebpackLoader
} from 'aurelia-loader-webpack';
/**
* Manually bootstraps an application.
* @param configure A callback which passes an Aurelia instance to the developer to manually configure and start up the app.
* @return A Promise that completes when configuration is done.
*/
export declare function bootstrap(configure: Function): Promise<void>;