Make it possible to track items in iterables in custom ways (e.g. by ID or index), rather than simply by identity. Closes #6779
26 lines
455 B
TypeScript
26 lines
455 B
TypeScript
/**
|
|
* @module
|
|
* @description
|
|
* Change detection enables data binding in Angular.
|
|
*/
|
|
|
|
export {
|
|
ChangeDetectionStrategy,
|
|
|
|
ExpressionChangedAfterItHasBeenCheckedException,
|
|
ChangeDetectionError,
|
|
|
|
ChangeDetectorRef,
|
|
|
|
WrappedValue,
|
|
SimpleChange,
|
|
PipeTransform,
|
|
IterableDiffers,
|
|
IterableDiffer,
|
|
IterableDifferFactory,
|
|
KeyValueDiffers,
|
|
KeyValueDiffer,
|
|
KeyValueDifferFactory,
|
|
TrackByFn
|
|
} from './change_detection/change_detection';
|