fix(common): fix ngOnChanges signature of NgTemplateOutlet directive

This commit is contained in:
Marc Laval
2016-09-14 15:41:44 +02:00
committed by Alex Eagle
parent bd4045b6e7
commit 14ee75924b
2 changed files with 3 additions and 3 deletions

View File

@ -181,7 +181,7 @@ export declare class NgTemplateOutlet implements OnChanges {
ngOutletContext: Object;
ngTemplateOutlet: TemplateRef<Object>;
constructor(_viewContainerRef: ViewContainerRef);
ngOnChanges(): void;
ngOnChanges(changes: SimpleChanges): void;
}
/** @stable */