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

    Interface StoreChangedEvent<IDType>

    Emitted when the underlying data of a store changed.

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

    Type Parameters

    Index

    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.