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