Interface StoreChangedEvent<IDType>

Emitted when the underlying data of a store changed.

interface StoreChangedEvent<IDType> {
    added?: IDType[];
    deleted?: IDType[];
    updated?: IDType[];
}

Type Parameters

Properties

added?: IDType[]

IDs of items that were added.

deleted?: IDType[]

IDs of items that were deleted.

updated?: IDType[]

IDs of items that were updated.

Generated using TypeDoc