BREAKING CHANGE Closes #2497 - change detection strategy type changes from string to ChangeDetectionStrategy - CHECK_ONCE => ChangeDetectionStrategy.CheckOnce - CHECKED => ChangeDetectionStrategy.Checked - CHECK_ALWAYS => ChangeDetectionStrategy.CheckAlways - DETACHED => ChangeDetectionStrategy.Detached - ON_PUSH => ChangeDetectionStrategy.OnPush - DEFAULT => ChangeDetectionStrategy.Default - ON_PUSH_OBSERVE => ChangeDetectionStrategy.OnPushObserve
		
			
				
	
	
		
			28 lines
		
	
	
		
			488 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			488 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @module
 | |
|  * @description
 | |
|  * Change detection enables data binding in Angular.
 | |
|  */
 | |
| 
 | |
| export {
 | |
|   ChangeDetectionStrategy,
 | |
| 
 | |
|   ExpressionChangedAfterItHasBeenCheckedException,
 | |
|   ChangeDetectionError,
 | |
| 
 | |
|   ChangeDetector,
 | |
|   Locals,
 | |
|   ChangeDetectorRef,
 | |
| 
 | |
|   WrappedValue,
 | |
|   PipeTransform,
 | |
|   PipeOnDestroy,
 | |
|   IterableDiffers,
 | |
|   IterableDiffer,
 | |
|   IterableDifferFactory,
 | |
|   KeyValueDiffers,
 | |
|   KeyValueDiffer,
 | |
|   KeyValueDifferFactory
 | |
| 
 | |
| } from 'angular2/src/core/change_detection/change_detection';
 |