Skip to content

IMapChange

github-actions[bot] edited this page Nov 17, 2024 · 2 revisions
API / IMapChange<TKey, TItem> interface

Contains information about entries that are added or removed from a map.

interface IMapChange<TKey, TItem>

Source reference: src/collections/observableMap/IMapChange.ts:6.

Generic Parameters

  • TKey - The type of keys the map contains.

  • TItem - The type of items the map contains.

Properties

  • readonly addedEntries - The entries that were added to the set.
  • readonly operation - The operation that was performed
  • readonly removedEntries - The entries that were removed from the set.
Clone this wiki locally