/** * @module * @description * This module provides a set of common Pipes. */ export {AsyncPipe} from './pipes/async_pipe'; export {DatePipe} from './pipes/date_pipe'; export {DEFAULT_PIPES, DEFAULT_PIPES_TOKEN} from './pipes/default_pipes'; export {JsonPipe} from './pipes/json_pipe'; export {LimitToPipe} from './pipes/limit_to_pipe'; export {LowerCasePipe} from './pipes/lowercase_pipe'; export {NumberPipe, DecimalPipe, PercentPipe, CurrencyPipe} from './pipes/number_pipe'; export {UpperCasePipe} from './pipes/uppercase_pipe';