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