2015-03-31 22:47:11 +00:00
|
|
|
/**
|
2015-04-10 12:45:02 +02:00
|
|
|
* @module
|
|
|
|
* @description
|
2015-04-10 11:15:01 -07:00
|
|
|
* This module provides advanced support for extending change detection.
|
2015-03-31 22:47:11 +00:00
|
|
|
*/
|
2015-05-18 17:47:44 -07:00
|
|
|
|
|
|
|
export {UpperCasePipe} from './src/change_detection/pipes/uppercase_pipe';
|
|
|
|
export {LowerCasePipe} from './src/change_detection/pipes/lowercase_pipe';
|
2015-08-04 11:55:21 -07:00
|
|
|
export {AsyncPipe} from './src/change_detection/pipes/async_pipe';
|
2015-05-18 17:47:44 -07:00
|
|
|
export {JsonPipe} from './src/change_detection/pipes/json_pipe';
|
2015-07-04 22:34:54 +04:30
|
|
|
export {DatePipe} from './src/change_detection/pipes/date_pipe';
|
2015-07-04 22:25:43 +04:30
|
|
|
export {DecimalPipe, PercentPipe, CurrencyPipe} from './src/change_detection/pipes/number_pipe';
|
2015-06-26 00:22:36 +04:30
|
|
|
export {LimitToPipe} from './src/change_detection/pipes/limit_to_pipe';
|