// Generated by typings // Source: https://raw.githubusercontent.com/aurelia/bootstrapper/master/dist/aurelia-bootstrapper.d.ts declare module 'aurelia-bootstrapper' { import 'aurelia-polyfills'; import { PLATFORM } from 'aurelia-pal'; import { initialize } from 'aurelia-pal-browser'; /** * 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 function bootstrap(configure: Function): Promise; }