Axinom Mosaic Libraries
    Preparing search index...

    Interface ExplorerDataProviderConnection<T>

    interface ExplorerDataProviderConnection<T extends Data> {
        add: (values: T) => void;
        change: (itemId: any, patch: Partial<T>) => void;
        remove: (itemId: any) => void;
    }

    Type Parameters

    Index

    Properties

    Properties

    add: (values: T) => void

    Use this method to tell the Explorer that an item got added.

    change: (itemId: any, patch: Partial<T>) => void

    Use this method to tell the Explorer that an item has changed.

    remove: (itemId: any) => void

    Use this method to tell the Explorer that an item got removed.