Skip to content

Cache

Defined in: types.ts:193

The cache used by the ApiClient to store responses.

get - gets a value from the cache

set - sets a value in the cache

get<T>(key, ...args): Promise<T>;

Defined in: types.ts:194

T

string

unknown[]

Promise<T>


set<T>(
key,
value, ...
args): Promise<unknown>;

Defined in: types.ts:195

T

string

T

unknown[]

Promise<unknown>