UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

18 lines (17 loc) 654 B
/** * @module * @description * This module provides a set of common Pipes. */ import { AsyncPipe } from './async_pipe'; import { UpperCasePipe } from './uppercase_pipe'; import { SlicePipe } from './slice_pipe'; import { ReplacePipe } from './replace_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` or `@View` decorators. */ export declare const COMMON_PIPES: (typeof AsyncPipe | typeof UpperCasePipe | typeof SlicePipe | typeof ReplacePipe)[];