Record representing the item change information.
API
interface IterableChangeRecord<V> {
readonly currentIndex: number | null;
readonly previousIndex: number | null;
readonly item: V;
readonly trackById: any;
}
currentIndex
number | nullCurrent index of the item in Iterable or null if removed.
previousIndex
number | nullPrevious index of the item in Iterable or null if added.
item
VThe item.
trackById
anyTrack by identity as computed by the TrackByFunction.