DefaultIterableDiffer

Stable Class Class Overview class DefaultIterableDiffer { constructor(_trackByFn?: TrackByFn) collection length : number forEachItem(fn: Function) forEachOperation(fn: (item: CollectionChangeRecord, previousIndex: number, currentIndex: number) => void) forEachPreviousItem(fn: Function) forEachAddedItem(fn: Function) forEachMovedItem(fn: Function) forEachRemovedItem(fn: Function) forEachIdentityChange(fn: Function) diff(collection: any) : DefaultIterableDiffer

DecimalPipe

Stable Pipe What it does Formats a number according to locale rules. How to use number_expression | number[:digitInfo] Formats a number as text. Group sizing and separator and other locale-specific configurations are based on the active locale. where expression is a number: digitInfo is a string which has a following format: {minIntegerDigits}.{minFractionDigits}-{maxFractionDigits} minIntegerDigits is the minimum number of integer digits to use. Defaults to 1. minFractionDigits is the m

DebugNode

Experimental Class Class Overview class DebugNode { constructor(nativeNode: any, parent: DebugNode, _debugInfo: RenderDebugInfo) nativeNode : any listeners : EventListener[] parent : DebugElement injector : Injector componentInstance : any context : any references : {[key: string]: any} providerTokens : any[] source : string } Class Description Constructor constructor(nativeNode: any, parent: DebugNode, _debugInfo: RenderDebugInfo) Class Details nativeNode : any

DebugElement

Experimental Class Class Overview class DebugElement { constructor(nativeNode: any, parent: any, _debugInfo: RenderDebugInfo) name : string properties : {[key: string]: any} attributes : {[key: string]: string} classes : {[key: string]: boolean} styles : {[key: string]: string} childNodes : DebugNode[] nativeElement : any addChild(child: DebugNode) removeChild(child: DebugNode) insertChildrenAfter(child: DebugNode, newChildren: DebugNode[]) query(predicate: Pred

DatePipe

Stable Pipe What it does Formats a date according to locale rules. How to use date_expression | date[:format] NgModuleCommonModule Description Where: expression is a date object or a number (milliseconds since UTC epoch) or an ISO string (https://www.w3.org/TR/NOTE-datetime). format indicates which date/time components to include. The format can be predifined as shown below or custom as shown in the table. 'medium': equivalent to 'yMMMdjms' (e.g. Sep 3, 2010, 12:05:08 PM for en-US)

Data

Stable Type-alias What it does Represents the static data associated with a particular route. See Routes for more details. Interface Overview interface Data { } Interface Description exported from @angular/router/index, defined in @angular/router/src/config.ts

CUSTOM_ELEMENTS_SCHEMA

Stable Const Variable Export export CUSTOM_ELEMENTS_SCHEMA Defines a schema that will allow: any non-angular elements with a - in their name, any properties on elements with a - in their name which is the common rule for custom elements. exported from @angular/core/index defined in @angular/core/src/metadata/ng_module.ts

CurrencyPipe

Stable Pipe What it does Formats a number as currency using locale rules. How to use number_expression | currency[:currencyCode[:symbolDisplay[:digitInfo]]] NgModuleCommonModule Description Use currency to format a number as currency. currencyCode is the ISO 4217 currency code, such as USD for the US dollar and EUR for the euro. symbolDisplay is a boolean indicating whether to use the currency symbol or code. true: use symbol (e.g. $). false(default): use code (e.g. USD). digitInf

createPlatformFactory()

Experimental Function Class Export export createPlatformFactory(parentPlaformFactory: (extraProviders?: Provider[]) => PlatformRef, name: string, providers?: Provider[]) : (extraProviders?: Provider[]) => PlatformRef Creates a factory for a platform exported from @angular/core/index defined in @angular/core/src/application_ref.ts

createPlatform()

Experimental Function Class Export export createPlatform(injector: Injector) : PlatformRef Creates a platform. Platforms have to be eagerly created via this function. exported from @angular/core/index defined in @angular/core/src/application_ref.ts