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,
|
|
|
|
|
|
|
|
ChangeDetectorRef,
|
|
|
|
|
|
|
|
WrappedValue,
|
2015-09-23 11:43:31 -07:00
|
|
|
SimpleChange,
|
2015-08-07 11:41:38 -07:00
|
|
|
PipeTransform,
|
2015-07-31 12:23:50 -07:00
|
|
|
IterableDiffers,
|
|
|
|
IterableDiffer,
|
|
|
|
IterableDifferFactory,
|
|
|
|
KeyValueDiffers,
|
|
|
|
KeyValueDiffer,
|
2016-02-01 18:31:26 -08:00
|
|
|
KeyValueDifferFactory,
|
|
|
|
TrackByFn
|
2015-09-11 13:45:31 -07:00
|
|
|
} from './change_detection/change_detection';
|