https://github.com/angular/angular
Raw File
Tip revision: c0441945ee739790f03801f9767fd557aff930cb authored by Nick Radford on 26 June 2015, 18:19:29 UTC
docs(DEVELOPER.md): fix link to clang formatting
Tip revision: c044194
pipes.ts
/**
 * @module
 * @public
 * @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';
back to top