map.apps Bundle APIs 4.20.0
    Preparing search index...

    Interface ItemSource

    Describes the item source for a selection event.

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

    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.