Skip to content

BaseKVStore

Defined in: .build/typescript/packages/core/src/storage/kv-store/index.ts:15

new BaseKVStore(): BaseKVStore

BaseKVStore

abstract put(key, val, collection?): Promise<void>

Defined in: .build/typescript/packages/core/src/storage/kv-store/index.ts:16

string

StoredValue

string

Promise<void>


abstract get(key, collection?): Promise<StoredValue>

Defined in: .build/typescript/packages/core/src/storage/kv-store/index.ts:21

string

string

Promise<StoredValue>


abstract getAll(collection?): Promise<Record<string, StoredValue>>

Defined in: .build/typescript/packages/core/src/storage/kv-store/index.ts:22

string

Promise<Record<string, StoredValue>>


abstract delete(key, collection?): Promise<boolean>

Defined in: .build/typescript/packages/core/src/storage/kv-store/index.ts:23

string

string

Promise<boolean>