Skip to content

ICollectionChange

github-actions[bot] edited this page Dec 3, 2024 · 3 revisions
API / ICollectionChange<TItem> interface

Contains information about items that are added or removed from a collection.

interface ICollectionChange<TItem>

Source reference: src/collections/observableCollections/ICollectionChange.ts:5.

Generic Parameters

  • TItem - The type of items the collection contains.

Properties

  • readonly addedItems - The items that were added to the collection.
  • readonly operation - The operation that was performed
  • readonly removedItems - The items that were removed from the collection.
  • readonly startIndex - The start index where the change has happenend.
Clone this wiki locally