fix(common): do not reference deprecated classes in providers (#14523) (#14523)

References to `NgFor` are now an alias for `NgForOf` instead of a
derived class.

Fixes #14521
This commit is contained in:
Chuck Jazdzewski
2017-02-23 17:23:56 -08:00
committed by Igor Minar
parent c53621be8e
commit a23634dfd0
5 changed files with 27 additions and 87 deletions

View File

@ -32,10 +32,6 @@ export declare class DecimalPipe implements PipeTransform {
transform(value: any, digits?: string): string;
}
/** @deprecated */
export declare class DeprecatedCommonModule {
}
/** @stable */
export declare class HashLocationStrategy extends LocationStrategy {
constructor(_platformLocation: PlatformLocation, _baseHref?: string);
@ -147,8 +143,7 @@ export declare class NgComponentOutlet implements OnChanges, OnDestroy {
}
/** @deprecated */
export declare class NgFor extends NgForOf<any> {
}
export declare const NgFor: typeof NgForOf;
/** @stable */
export declare class NgForOf<T> implements DoCheck, OnChanges {