TemplateRef

Stable Class Class Overview class TemplateRef { C elementRef : ElementRef createEmbeddedView(context: C) : EmbeddedViewRef<C> } Class Description Represents an Embedded Template that can be used to instantiate Embedded Views. You can access a TemplateRef, in two ways. Via a directive placed on a <template> element (or directive prefixed with *) and have the TemplateRef for this Embedded View injected into the constructor of the directive using the TemplateRef Token. Alte

AnimationStateMetadata

Experimental Class Class Overview class AnimationStateMetadata { } Class Description exported from @angular/core/index, defined in @angular/core/src/animation/metadata.ts

SlicePipe

Stable Pipe What it does Creates a new List or String containing a subset (slice) of the elements. How to use array_or_string_expression | slice:start[:end] NgModuleCommonModule Description Where the input expression is a List or String, and: start: The starting index of the subset to return. a positive integer: return the item at start index and all items after in the list or string expression. a negative integer: return the item at start index from the end and all items after in th

ViewRef

Stable Class Class Overview class ViewRef { destroyed : boolean onDestroy(callback: Function) : any } Class Description Class Details destroyed : boolean onDestroy(callback: Function) : any exported from @angular/core/index, defined in @angular/core/src/linker/view_ref.ts

FormControlDirective

Stable Directive What it does Syncs a standalone FormControl instance to a form control element. In other words, this directive ensures that any values written to the FormControl instance programmatically will be written to the DOM element (model -> view). Conversely, any values written to the DOM element through user input will be reflected in the FormControl instance (view -> model). How to use Use this directive if you'd like to create and manage a FormControl instance directly. S

MockLocationStrategy

Stable Class Class Overview class MockLocationStrategy { constructor() internalBaseHref : string internalPath : string internalTitle : string urlChanges : string[] simulatePopState(url: string) : void path(includeHash?: boolean) : string prepareExternalUrl(internal: string) : string pushState(ctx: any, title: string, path: string, query: string) : void replaceState(ctx: any, title: string, path: string, query: string) : void onPopState(fn: (value: any) => void)

Renderer

Experimental Class Class Overview class Renderer { selectRootElement(selectorOrNode: string|any, debugInfo?: RenderDebugInfo) : any createElement(parentElement: any, name: string, debugInfo?: RenderDebugInfo) : any createViewRoot(hostElement: any) : any createTemplateAnchor(parentElement: any, debugInfo?: RenderDebugInfo) : any createText(parentElement: any, value: string, debugInfo?: RenderDebugInfo) : any projectNodes(parentElement: any, nodes: any[]) : void attachViewAfter(n

FnArg

Experimental Class Class Overview class FnArg { constructor(value: any, type: Type<any>) value : any type : Type<any> } Class Description Constructor constructor(value: any, type: Type<any>) Class Details value : any type : Type<any> exported from @angular/platform-webworker/index, defined in @angular/platform-webworker/src/web_workers/shared/client_message_broker.ts

Query

Stable Class Class Overview class Query { descendants : boolean first : boolean read : any isViewQuery : boolean selector : any } Class Description Base class for query metadata. See ContentChildren, ContentChild, ViewChildren, ViewChild for more information. Class Details descendants : boolean first : boolean read : any isViewQuery : boolean selector : any exported from @angular/core/index, defined in @angular/core/src/metadata/di.ts

NgLocalization

Experimental Class Class Overview class NgLocalization { getPluralCategory(value: any) : string } Class Description Class Details getPluralCategory(value: any) : string exported from @angular/common/index, defined in @angular/common/src/localization.ts