/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ /** * @module * @description * This module provides a set of common Pipes. */ import { AsyncPipe } from './async_pipe'; import { I18nPluralPipe } from './i18n_plural_pipe'; import { I18nSelectPipe } from './i18n_select_pipe'; import { ReplacePipe } from './replace_pipe'; import { SlicePipe } from './slice_pipe'; /** * A collection of Angular core pipes that are likely to be used in each and every * application. * * This collection can be used to quickly enumerate all the built-in pipes in the `pipes` * property of the `@Component` decorator. * * @experimental Contains i18n pipes which are experimental */ export declare const COMMON_PIPES: (typeof AsyncPipe | typeof SlicePipe | typeof ReplacePipe | typeof I18nPluralPipe | typeof I18nSelectPipe)[];