UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

29 lines 1.05 kB
export class DebugContext { constructor(element, componentElement, directive, context, locals, injector) { this.element = element; this.componentElement = componentElement; this.directive = directive; this.context = context; this.locals = locals; this.injector = injector; } } export class ChangeDetectorGenConfig { constructor(genDebugInfo, logBindingUpdate, useJit) { this.genDebugInfo = genDebugInfo; this.logBindingUpdate = logBindingUpdate; this.useJit = useJit; } } export class ChangeDetectorDefinition { constructor(id, strategy, variableNames, bindingRecords, eventRecords, directiveRecords, genConfig) { this.id = id; this.strategy = strategy; this.variableNames = variableNames; this.bindingRecords = bindingRecords; this.eventRecords = eventRecords; this.directiveRecords = directiveRecords; this.genConfig = genConfig; } } //# sourceMappingURL=interfaces.js.map