ICollectionChangedEvent - Andrei15193/react-model-view-viewmodel GitHub Wiki
API / ICollectionChangedEvent<TSubject, TItem> interface
A specialized event for subscribing and unsubscribing from collection changed events.
Extends IEvent<TSubject, ICollectionChange<TItem>>.
interface ICollectionChangedEvent<TSubject, TItem>
extends IEvent<TSubject, ICollectionChange<TItem>>
Source reference: src/collections/observableCollections/ICollectionChangedEvent.ts:9
.
-
TSubject - The type of object that raises the event.
-
TItem - The type of items the collection contains.