refactor(common): remove deprecated ReplacePipe (#10772)

BREAKING CHANGE: previously deprecated ReplacePipe was removed
This commit is contained in:
Igor Minar
2016-08-12 21:50:57 -07:00
committed by vikerman
parent 3329977ec9
commit 33ced7088f
5 changed files with 1 additions and 162 deletions

View File

@ -12,7 +12,7 @@ export declare class AsyncPipe implements OnDestroy {
export declare const COMMON_DIRECTIVES: any[];
/** @experimental */
export declare const COMMON_PIPES: (typeof AsyncPipe | typeof SlicePipe | typeof ReplacePipe | typeof I18nPluralPipe | typeof I18nSelectPipe)[];
export declare const COMMON_PIPES: (typeof AsyncPipe | typeof SlicePipe | typeof I18nPluralPipe | typeof I18nSelectPipe)[];
/** @experimental */
export declare class CommonModule {
@ -232,11 +232,6 @@ export declare enum Plural {
Other = 5,
}
/** @deprecated */
export declare class ReplacePipe implements PipeTransform {
transform(value: any, pattern: string | RegExp, replacement: Function | string): any;
}
/** @stable */
export declare class SlicePipe implements PipeTransform {
transform(value: any, start: number, end?: number): any;