refactor(common): remove COMMON_DIRECTIVES, COMMON_PIPES, CORE_DIRECTIVES that were replace with CommonModule

This commit is contained in:
Igor Minar
2016-08-23 13:41:42 -07:00
committed by Victor Berchet
parent 6ef7a76e39
commit 6335b31702
6 changed files with 2 additions and 14 deletions

View File

@ -8,19 +8,10 @@ export declare class AsyncPipe implements OnDestroy {
transform(obj: Observable<any> | Promise<any> | EventEmitter<any>): any;
}
/** @experimental */
export declare const COMMON_DIRECTIVES: Provider[];
/** @experimental */
export declare const COMMON_PIPES: (typeof AsyncPipe | typeof SlicePipe | typeof I18nPluralPipe | typeof I18nSelectPipe)[];
/** @experimental */
export declare class CommonModule {
}
/** @stable */
export declare const CORE_DIRECTIVES: Type<any>[];
/** @experimental */
export declare class CurrencyPipe implements PipeTransform {
transform(value: any, currencyCode?: string, symbolDisplay?: boolean, digits?: string): string;