26 lines
		
	
	
		
			459 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			459 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @module
 | 
						|
 * @description
 | 
						|
 * Change detection enables data binding in Angular.
 | 
						|
 */
 | 
						|
 | 
						|
export {
 | 
						|
  ChangeDetectionStrategy,
 | 
						|
 | 
						|
  ExpressionChangedAfterItHasBeenCheckedException,
 | 
						|
  ChangeDetectionError,
 | 
						|
 | 
						|
  ChangeDetectorRef,
 | 
						|
 | 
						|
  WrappedValue,
 | 
						|
  SimpleChange,
 | 
						|
  PipeTransform,
 | 
						|
  PipeOnDestroy,
 | 
						|
  IterableDiffers,
 | 
						|
  IterableDiffer,
 | 
						|
  IterableDifferFactory,
 | 
						|
  KeyValueDiffers,
 | 
						|
  KeyValueDiffer,
 | 
						|
  KeyValueDifferFactory
 | 
						|
} from './change_detection/change_detection';
 |