UNPKG

824 BTypeScriptView Raw
1export { AngularEntrypoint } from 'angular2/src/core/angular_entrypoint';
2export { BROWSER_PROVIDERS, ELEMENT_PROBE_PROVIDERS, ELEMENT_PROBE_PROVIDERS_PROD_MODE, inspectNativeElement, BrowserDomAdapter, By, Title, enableDebugTools, disableDebugTools } from 'angular2/src/platform/browser_common';
3import { Type } from 'angular2/src/facade/lang';
4import { ComponentRef } from 'angular2/core';
5/**
6 * An array of providers that should be passed into `application()` when bootstrapping a component
7 * when all templates
8 * have been precompiled offline.
9 */
10export declare const BROWSER_APP_PROVIDERS: Array<any>;
11/**
12 * See {@link bootstrap} for more information.
13 */
14export declare function bootstrapStatic(appComponentType: Type, customProviders?: Array<any>, initReflector?: Function): Promise<ComponentRef>;