angular2
Version:
Angular 2 - a web framework for modern web apps
10 lines (9 loc) • 324 B
TypeScript
/**
* @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';
export declare const COMMON_PIPES: (typeof AsyncPipe | typeof UpperCasePipe | typeof SlicePipe)[];