angular2
Version:
Angular 2 - a web framework for modern web apps
17 lines (16 loc) • 711 B
TypeScript
/**
* @module
* @description
* This module provides a set of common Pipes.
*/
export { AsyncPipe } from './pipes/async_pipe';
export { DatePipe } from './pipes/date_pipe';
export { JsonPipe } from './pipes/json_pipe';
export { SlicePipe } from './pipes/slice_pipe';
export { LowerCasePipe } from './pipes/lowercase_pipe';
export { NumberPipe, DecimalPipe, PercentPipe, CurrencyPipe } from './pipes/number_pipe';
export { UpperCasePipe } from './pipes/uppercase_pipe';
export { ReplacePipe } from './pipes/replace_pipe';
export { I18nPluralPipe } from './pipes/i18n_plural_pipe';
export { I18nSelectPipe } from './pipes/i18n_select_pipe';
export { COMMON_PIPES } from './pipes/common_pipes';