refactor(NgFor): cleanup

This commit is contained in:
Victor Berchet
2016-07-16 10:35:31 -07:00
parent 32d8cde9c6
commit 8cd97c2054
2 changed files with 34 additions and 37 deletions

View File

@ -345,12 +345,13 @@ export declare class NgControlStatus {
}
/** @stable */
export declare class NgFor implements DoCheck {
export declare class NgFor implements DoCheck, OnChanges {
ngForOf: any;
ngForTemplate: TemplateRef<NgForRow>;
ngForTrackBy: TrackByFn;
constructor(_viewContainer: ViewContainerRef, _templateRef: TemplateRef<NgForRow>, _iterableDiffers: IterableDiffers, _cdr: ChangeDetectorRef);
ngDoCheck(): void;
ngOnChanges(changes: SimpleChanges): void;
}
/** @experimental */