refactor(common): remove deprecated ReplacePipe (#10772)
BREAKING CHANGE: previously deprecated ReplacePipe was removed
This commit is contained in:
7
tools/public_api_guard/common/index.d.ts
vendored
7
tools/public_api_guard/common/index.d.ts
vendored
@ -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;
|
||||
|
Reference in New Issue
Block a user