feat(pipe): reexported pipes to genereate docs

This commit is contained in:
vsavkin 2015-05-18 17:47:44 -07:00
parent aad5795408
commit 155b1e2b35
1 changed files with 8 additions and 0 deletions

View File

@ -4,3 +4,11 @@
* @description
* This module provides advanced support for extending change detection.
*/
export {PromisePipe} from './src/change_detection/pipes/promise_pipe';
export {UpperCasePipe} from './src/change_detection/pipes/uppercase_pipe';
export {LowerCasePipe} from './src/change_detection/pipes/lowercase_pipe';
export {ObservablePipe} from './src/change_detection/pipes/observable_pipe';
export {JsonPipe} from './src/change_detection/pipes/json_pipe';
export {IterableChanges} from './src/change_detection/pipes/iterable_changes';
export {KeyValueChanges} from './src/change_detection/pipes/keyvalue_changes';