DataStore interface, listData method.

interface ListData {
    listData: ((prefix?) => AsyncIterable<Data>);
}

Implemented by

    Properties

    Properties

    listData: ((prefix?) => AsyncIterable<Data>)

    List Data packets, optionally filtered by name prefix.

    Type declaration

      • (prefix?): AsyncIterable<Data>
      • Parameters

        • Optional prefix: Name

        Returns AsyncIterable<Data>

    Generated using TypeDoc