Interface StoreEvents<IDType>

Events that may be emitted by a store.

Note that not all stores implement events.

interface StoreEvents<IDType> {
    changed: StoreChangedEvent<IDType>;
}

Type Parameters

Properties

Properties

Emitted when the underlying data changed.

Generated using TypeDoc