BREAKING CHANGE:
    Directives that previously injected Pipes to get iterableDiff or keyvalueDiff, now should inject IterableDiffers and KeyValueDiffers.
		
	
			
		
			
				
	
	
		
			37 lines
		
	
	
		
			587 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			587 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @module
 | |
|  * @description
 | |
|  * Change detection enables data binding in Angular.
 | |
|  */
 | |
| 
 | |
| export {
 | |
|   CHECK_ONCE,
 | |
|   CHECK_ALWAYS,
 | |
|   DETACHED,
 | |
|   CHECKED,
 | |
|   ON_PUSH,
 | |
|   DEFAULT,
 | |
| 
 | |
|   ExpressionChangedAfterItHasBeenCheckedException,
 | |
|   ChangeDetectionError,
 | |
| 
 | |
|   ChangeDetector,
 | |
|   Locals,
 | |
|   ChangeDetectorRef,
 | |
| 
 | |
|   WrappedValue,
 | |
|   defaultPipes,
 | |
|   Pipe,
 | |
|   Pipes,
 | |
|   IterableDiffers,
 | |
|   IterableDiffer,
 | |
|   IterableDifferFactory,
 | |
|   KeyValueDiffers,
 | |
|   KeyValueDiffer,
 | |
|   KeyValueDifferFactory,
 | |
|   PipeFactory,
 | |
|   BasePipe,
 | |
|   NullPipe,
 | |
|   NullPipeFactory
 | |
| } from 'angular2/src/change_detection/change_detection';
 |