AnimationStateMetadata

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

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

Http

Experimental Class Class Overview class Http { constructor(_backend: ConnectionBackend, _defaultOptions: RequestOptions) request(url: string|Request, options?: RequestOptionsArgs) : Observable<Response> get(url: string, options?: RequestOptionsArgs) : Observable<Response> post(url: string, body: any, options?: RequestOptionsArgs) : Observable<Response> put(url: string, body: any, options?: RequestOptionsArgs) : Observable<Response> delete(url: string

DOCUMENT

Stable Const Variable Export export DOCUMENT A DI Token representing the main rendering context. In a browser this is the DOM Document. Note: Document might not be available in the Application Context when Application and Rendering Contexts are not the same (e.g. when running the application into a Web Worker). exported from @angular/platform-browser/index defined in @angular/platform-browser/src/dom/dom_tokens.ts

DomSanitizer

Stable Security Risk Class Security Risk Calling any of the bypassSecurityTrust... APIs disables Angular's built-in sanitization for the value passed in. Carefully check and audit all values and code paths going into this call. Make sure any user data is appropriately escaped for this security context. For more detail, see the Security Guide. Class Overview class DomSanitizer { sanitize(context: SecurityContext, value: any) : string bypassSecurityTrustHtml(value: string) : SafeHtml

TestModuleMetadata

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

TestabilityRegistry

Experimental Class Class Overview class TestabilityRegistry { constructor() registerApplication(token: any, testability: Testability) getTestability(elem: any) : Testability getAllTestabilities() : Testability[] getAllRootElements() : any[] findTestabilityInTree(elem: Node, findInAncestors?: boolean) : Testability } Class Description A global registry of Testability instances for specific elements. Annotations @Injectable() Constructor constructor() Class Details re

asNativeElements()

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

style()

Experimental Function Class Export export style(tokens: string | {[key: string]: string | number} | Array<string|{[key: string]: string | number}>) : AnimationStyleMetadata style is an animation-specific function that is designed to be used inside of Angular2's animation DSL language. If this information is new, please navigate to the component animations metadata page to gain a better understanding of how animations in Angular2 are used. style declares a key/value object containin

MockBackend

Experimental Class Class Overview class MockBackend { constructor() connections : any connectionsArray : MockConnection[] pendingConnections : any verifyNoPendingRequests() resolveAllConnections() createConnection(req: Request) : MockConnection } Class Description A mock backend for testing the Http service. This class can be injected in tests, and should be used to override providers to other backends, such as XHRBackend. Example import {BaseRequestOptions, Http} from