assertPlatform()

Experimental Function Class Export export assertPlatform(requiredToken: any) : PlatformRef Checks that there currently is a platform which contains the given token as a provider. exported from @angular/core/index defined in @angular/core/src/application_ref.ts

asNativeElements()

Experimental Function Class Export export asNativeElements(debugEls: DebugElement[]) : any exported from @angular/core/index defined in @angular/core/src/debug/debug_node.ts

APP_INITIALIZER

Experimental Const Variable Export export APP_INITIALIZER A function that will be executed when an application is initialized. exported from @angular/core/index defined in @angular/core/src/application_init.ts

APP_ID

Experimental Const Variable Export export APP_ID A DI Token representing a unique string id assigned to the application by Angular and used primarily for prefixing application attributes and CSS styles when ViewEncapsulation is being used. If you need to avoid randomly generated value to be used as an application id, you can provide a custom value via a DI provider configuring the root Injector using this token. exported from @angular/core/index defined in @angular/core/src/application_tok

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

APP_BASE_HREF

Stable Const Variable Export export APP_BASE_HREF The APP_BASE_HREF token represents the base href to be used with the PathLocationStrategy. If you're using PathLocationStrategy, you must provide a provider to a string representing the URL prefix that should be preserved when generating and recognizing URLs. Example import {Component, NgModule} from '@angular/core'; import {APP_BASE_HREF} from '@angular/common'; @NgModule({ providers: [{provide: APP_BASE_HREF, useValue: '/my/app'}] }) cla

ApplicationRef

Stable Class Class Overview class ApplicationRef { bootstrap(componentFactory: ComponentFactory<C>|Type<C>) : ComponentRef<C> tick() : void componentTypes : Type<any>[] components : ComponentRef<any>[] } Class Description A reference to an Angular application running on a page. For more about Angular applications, see the documentation for bootstrap. Class Details bootstrap(componentFactory: ComponentFactory<C>|Type<C>) : ComponentRef<

ApplicationModule

Experimental Class Class Overview class ApplicationModule { } Class Description This module includes the providers of @angular/core that are needed to bootstrap components via ApplicationRef. Annotations @NgModule({ providers: [ ApplicationRef_, {provide: ApplicationRef, useExisting: ApplicationRef_}, ApplicationInitStatus, Compiler, APP_ID_RANDOM_PROVIDER, ViewUtils, {provide: IterableDiffers, useFactory: _iterableDiffersFactory}, {provide: KeyValueDiff

ApplicationInitStatus

Experimental Class Class Overview class ApplicationInitStatus { constructor(appInits: (() => any)[]) done : boolean donePromise : Promise<any> } Class Description A class that reflects the state of running APP_INITIALIZERs. Annotations @Injectable() Constructor constructor(appInits: (() => any)[]) Class Details done : boolean donePromise : Promise<any> exported from @angular/core/index, defined in @angular/core/src/application_init.ts

AnimationWithStepsMetadata

Experimental Class Class Overview class AnimationWithStepsMetadata { constructor() steps : AnimationMetadata[] } Class Description Constructor constructor() Class Details steps : AnimationMetadata[] exported from @angular/core/index, defined in @angular/core/src/animation/metadata.ts