Interface ExplorerDataProviderConnection<T>

Type Parameters

Hierarchy

  • ExplorerDataProviderConnection

Properties

Properties

add: ((values) => void)

Type declaration

    • (values): void
    • Use this method to tell the Explorer that an item got added.

      Parameters

      • values: T

      Returns void

change: ((itemId, patch) => void)

Type declaration

    • (itemId, patch): void
    • Use this method to tell the Explorer that an item has changed.

      Parameters

      • itemId: any
      • patch: Partial<T>

      Returns void

remove: ((itemId) => void)

Type declaration

    • (itemId): void
    • Use this method to tell the Explorer that an item got removed.

      Parameters

      • itemId: any

      Returns void

Generated using TypeDoc