CollectionUpdate<K, V>
type CollectionUpdate<K, V> = object;
Partial update to a collection
Type Parameters
Type Parameter | Description |
---|---|
K extends Json | Type of keys. |
V extends Json | Type of values. |
Type declaration
isInitial?
optional isInitial: boolean;
A flag which is set when this update is the initial chunk of data rather than an update to the preceding state.
values
values: Entry<K, V>[];
All updated keys and their new values. An empty array indicates deletion.
watermark
watermark: Watermark;
A new watermark for the point after these updates.