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

NgModel

Stable Directive What it does Creates a FormControl instance from a domain model and binds it to a form control element. The FormControl instance will track the value, user interaction, and validation status of the control and keep the view synced with the model. If used within a parent form, the directive will also register itself with the form as a child control. How to use This directive can be used by itself or as part of a larger form. All you need is the ngModel selector to activate

Testability

Experimental Class Class Overview class Testability { constructor(_ngZone: NgZone) increasePendingRequestCount() : number decreasePendingRequestCount() : number isStable() : boolean whenStable(callback: Function) : void getPendingRequestCount() : number findBindings(using: any, provider: string, exactMatch: boolean) : any[] findProviders(using: any, provider: string, exactMatch: boolean) : any[] } Class Description The Testability service provides testing hooks that c

platformWorkerApp

Experimental Const Variable Export export platformWorkerApp exported from @angular/platform-webworker/index defined in @angular/platform-webworker/src/worker_app.ts

FormsModule

Stable Class Class Overview class FormsModule { } Class Description The ng module for forms. Annotations @NgModule({ declarations: TEMPLATE_DRIVEN_DIRECTIVES, providers: [RadioControlRegistry], exports: [InternalFormsSharedModule, TEMPLATE_DRIVEN_DIRECTIVES] }) exported from @angular/forms/index, defined in @angular/forms/src/form_providers.ts

MetadataOverride

Experimental Type-alias Interface Overview interface MetadataOverride { } Interface Description exported from @angular/core/testing/index, defined in @angular/core/testing/metadata_override.ts

FormArrayName

Stable Directive What it does Syncs a nested FormArray to a DOM element. How to use This directive is designed to be used with a parent FormGroupDirective (selector: [formGroup]). It accepts the string name of the nested FormArray you want to link, and will look for a FormArray registered with that name in the parent FormGroup instance you passed into FormGroupDirective. Nested form arrays can come in handy when you have a group of form controls but you're not sure how many there will be.

TRANSLATIONS

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

I18nPluralPipe

Experimental Pipe What it does Maps a value to a string that pluralizes the value according to locale rules. How to use expression | i18nPlural:mapping NgModuleCommonModule Description Where: expression is a number. mapping is an object that mimics the ICU format, see http://userguide.icu-project.org/formatparse/messages Example @Component({ selector: 'i18n-plural-pipe', template: `<div>{{ messages.length | i18nPlural: messageMapping }}</div>` }) export class I18nPlu

ControlContainer

Stable Class Class Overview class ControlContainer { name : string formDirective : Form path : string[] } Class Description A directive that contains multiple NgControls. Only used by the forms module. Class Details name : string formDirective : Form Get the form to which this container belongs. path : string[] Get the path to this container. exported from @angular/forms/index, defined in @angular/forms/src/directives/control_container.ts