2015-04-10 06:45:02 -04:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
2015-04-14 00:00:52 -04:00
|
|
|
* Change detection enables data binding in Angular.
|
2015-04-10 06:45:02 -04:00
|
|
|
*/
|
|
|
|
|
2015-05-01 17:05:19 -04:00
|
|
|
export {
|
2015-08-26 14:44:59 -04:00
|
|
|
ChangeDetectionStrategy,
|
2015-07-11 11:26:48 -04:00
|
|
|
|
|
|
|
ExpressionChangedAfterItHasBeenCheckedException,
|
|
|
|
ChangeDetectionError,
|
|
|
|
|
2015-07-30 13:01:31 -04:00
|
|
|
ChangeDetector,
|
|
|
|
Locals,
|
2015-07-11 11:26:48 -04:00
|
|
|
ChangeDetectorRef,
|
|
|
|
|
|
|
|
WrappedValue,
|
2015-08-07 14:41:38 -04:00
|
|
|
PipeTransform,
|
2015-08-12 15:04:54 -04:00
|
|
|
PipeOnDestroy,
|
2015-07-31 15:23:50 -04:00
|
|
|
IterableDiffers,
|
|
|
|
IterableDiffer,
|
|
|
|
IterableDifferFactory,
|
|
|
|
KeyValueDiffers,
|
|
|
|
KeyValueDiffer,
|
2015-08-12 15:04:54 -04:00
|
|
|
KeyValueDifferFactory
|
2015-08-20 18:11:12 -04:00
|
|
|
|
2015-08-20 17:28:25 -04:00
|
|
|
} from 'angular2/src/core/change_detection/change_detection';
|