UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

57 lines (48 loc) 2.2 kB
import {Locals} from './parser/locals'; import {BindingTarget, BindingRecord} from './binding_record'; import {DirectiveRecord, DirectiveIndex} from './directive_record'; import {ChangeDetectionStrategy} from './constants'; import {ChangeDetectorRef} from './change_detector_ref'; export class DebugContext { constructor(public element: any, public componentElement: any, public directive: any, public context: any, public locals: any, public injector: any) {} } export interface ChangeDispatcher { getDebugContext(appElement: any, elementIndex: number, directiveIndex: number): DebugContext; notifyOnBinding(bindingTarget: BindingTarget, value: any): void; logBindingUpdate(bindingTarget: BindingTarget, value: any): void; notifyAfterContentChecked(): void; notifyAfterViewChecked(): void; notifyOnDestroy(): void; getDetectorFor(directiveIndex: DirectiveIndex): ChangeDetector; getDirectiveFor(directiveIndex: DirectiveIndex): any; } export interface ChangeDetector { parent: ChangeDetector; mode: ChangeDetectionStrategy; ref: ChangeDetectorRef; addContentChild(cd: ChangeDetector): void; addViewChild(cd: ChangeDetector): void; removeContentChild(cd: ChangeDetector): void; removeViewChild(cd: ChangeDetector): void; remove(): void; hydrate(context: any, locals: Locals, dispatcher: ChangeDispatcher, pipes: any): void; dehydrate(): void; markPathToRootAsCheckOnce(): void; handleEvent(eventName: string, elIndex: number, event: any); detectChanges(): void; checkNoChanges(): void; destroyRecursive(): void; markAsCheckOnce(): void; } export interface ProtoChangeDetector { instantiate(): ChangeDetector; } export class ChangeDetectorGenConfig { constructor(public genDebugInfo: boolean, public logBindingUpdate: boolean, public useJit: boolean) {} } export class ChangeDetectorDefinition { constructor(public id: string, public strategy: ChangeDetectionStrategy, public variableNames: string[], public bindingRecords: BindingRecord[], public eventRecords: BindingRecord[], public directiveRecords: DirectiveRecord[], public genConfig: ChangeDetectorGenConfig) {} }