IterableChangeRecord

From Get docs
< @angular/coreAngular/docs/11/api/core/iterablechangerecord


IterableChangeRecord

interface

Record representing the item change information.

interface IterableChangeRecord<V> {
  currentIndex: number | null
  previousIndex: number | null
  item: V
  trackById: any
}

Properties

Property Description
null

Read-Only Current index of the item in Iterable or null if removed.

null

Read-Only Previous index of the item in Iterable or null if added.

item: V

Read-Only The item.

trackById: any

Read-Only Track by identity as computed by the TrackByFunction.


© 2010–2021 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v11.angular.io/api/core/IterableChangeRecord