CollectionChangeOperation - Andrei15193/react-model-view-viewmodel GitHub Wiki
API / CollectionChangeOperation alias
Describes all the possible operations that can add or remove items from a collection.
type CollectionChangeOperation
= "push"
| "pop"
| "unshift"
| "shift"
| "splice"
| "expand"
| "contract"
| "set"
| "fill"
| "copyWithin";
Source reference: src/collections/observableCollections/ICollectionChange.ts:19
.