refactor(NgTemplateOutlet): simplify implementation (#10492)

This commit is contained in:
Pawel Kozlowski
2016-08-04 20:28:36 +02:00
committed by Alex Rickabaugh
parent 8b18ef4ba2
commit ce5ba80792
2 changed files with 9 additions and 21 deletions

View File

@ -489,10 +489,11 @@ export declare class NgSwitchDefault {
}
/** @experimental */
export declare class NgTemplateOutlet {
export declare class NgTemplateOutlet implements OnChanges {
ngOutletContext: Object;
ngTemplateOutlet: TemplateRef<Object>;
constructor(_viewContainerRef: ViewContainerRef);
ngOnChanges(): void;
}
/** @stable */