Interface ItemSource

Describes the item source for a selection event.

interface ItemSource {
    store: Store<any>;
    storeProperties: Readonly<Record<string, unknown>>;
    type: "store";
}

Properties

store: Store<any>

Store instance that returned the item.

storeProperties: Readonly<Record<string, unknown>>

Service properties of the store (if any).

type: "store"

The type of this source. Currently always 'store', but more types (with different properties) may be added later.

Generated using TypeDoc