ICollectionChange - Andrei15193/react-model-view-viewmodel GitHub Wiki
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
.
- TItem - The type of items the collection contains.
-
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.