An in-memory string key/value data connector.

Implements

Constructors

Properties

Methods

Constructors

Properties

_storage: {
    [key: string]: string;
} = {}

Type declaration

  • [key: string]: string

Methods

  • Retrieve the list of items available from the data connector.

    Parameters

    • namespace: string = ''

      If not empty, only keys whose first token before : exactly match namespace will be returned, e.g. foo in foo:bar.

    Returns Promise<{
        ids: string[];
        values: string[];
    }>