PACKAGE_ROOT_URL

Experimental Const Variable Export export PACKAGE_ROOT_URL A token which indicates the root directory of the application exported from @angular/core/index defined in @angular/core/src/application_tokens.ts

platformBrowserDynamicTesting

Stable Const Variable Export export platformBrowserDynamicTesting exported from @angular/platform-browser-dynamic/testing/index defined in @angular/platform-browser-dynamic/testing/index.ts

Dynamic Forms

Render dynamic forms with FormGroup We can't always justify the cost and time to build handcrafted forms, especially if we'll need a great number of them, they're similar to each other, and they change frequently to meet rapidly changing business and regulatory requirements. It may be more economical to create the forms dynamically, based on metadata that describe the business object model. In this cookbook we show how to use formGroup to dynamically render a simple form with different control

APP_BOOTSTRAP_LISTENER

Experimental Const Variable Export export APP_BOOTSTRAP_LISTENER All callbacks provided via this token will be called for every component that is bootstrapped. Signature of the callback: (componentRef: ComponentRef) => void. exported from @angular/core/index defined in @angular/core/src/application_tokens.ts

PRIMITIVE

Experimental Const Variable Export export PRIMITIVE exported from @angular/platform-webworker/index defined in @angular/platform-webworker/src/web_workers/shared/serializer.ts

TRANSLATIONS

Experimental Const Variable Export export TRANSLATIONS exported from @angular/core/index defined in @angular/core/src/i18n/tokens.ts

RouterStateSnapshot

Stable Interface What it does Represents the state of the router at a moment in time. How to use @Component({templateUrl:'template.html'}) class MyComponent { constructor(router: Router) { const state: RouterState = router.routerState; const snapshot: RouterStateSnapshot = state.snapshot; const root: ActivatedRouteSnapshot = snapshot.root; const child = root.firstChild; const id: Observable<string> = child.params.map(p => p.id); //... } } Interface O

platform-browser-dynamic

Module Entry point for all public APIs of the platform-browser-dynamic package. RESOURCE_CACHE_PROVIDER platformBrowserDynamic defined in @angular/platform-browser-dynamic/index.ts

bootstrapWorkerUi()

Experimental Function Class Export export bootstrapWorkerUi(workerScriptUri: string, customProviders?: Provider[]) : Promise<PlatformRef> Bootstraps the worker ui. exported from @angular/platform-webworker/index defined in @angular/platform-webworker/src/platform-webworker.ts

UiArguments

Experimental Class Class Overview class UiArguments { constructor(method: string, args?: FnArg[]) method : string args : FnArg[] } Class Description Constructor constructor(method: string, args?: FnArg[]) Class Details method : string args : FnArg[] exported from @angular/platform-webworker/index, defined in @angular/platform-webworker/src/web_workers/shared/client_message_broker.ts