25 lines
429 B
TypeScript
25 lines
429 B
TypeScript
/**
|
|
* @module
|
|
* @description
|
|
* Change detection enables data binding in Angular.
|
|
*/
|
|
|
|
export {
|
|
ChangeDetectionStrategy,
|
|
|
|
ChangeDetectorRef,
|
|
|
|
WrappedValue,
|
|
SimpleChange,
|
|
PipeTransform,
|
|
IterableDiffers,
|
|
IterableDiffer,
|
|
IterableDifferFactory,
|
|
KeyValueDiffers,
|
|
KeyValueDiffer,
|
|
KeyValueDifferFactory,
|
|
CollectionChangeRecord,
|
|
KeyValueChangeRecord,
|
|
TrackByFn
|
|
} from './change_detection/change_detection';
|