IObservableCollection.push - Andrei15193/react-model-view-viewmodel GitHub Wiki
API / IObservableCollection<TItem> / push method
Appends new elements to the end of the collection, and returns the new length of the collection.
push(
...items: readonly TItem[]
): number
Source reference: src/collections/observableCollections/IObservableCollection.ts:21
.
Returns: number
The new length of the collection.