BaseKVStore
Defined in: .build/typescript/packages/core/src/storage/kv-store/index.ts:15
Extended by
Section titled “Extended by”Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new BaseKVStore():
BaseKVStore
Returns
Section titled “Returns”BaseKVStore
Methods
Section titled “Methods”
abstractput(key,val,collection?):Promise<void>
Defined in: .build/typescript/packages/core/src/storage/kv-store/index.ts:16
Parameters
Section titled “Parameters”string
collection?
Section titled “collection?”string
Returns
Section titled “Returns”Promise<void>
abstractget(key,collection?):Promise<StoredValue>
Defined in: .build/typescript/packages/core/src/storage/kv-store/index.ts:21
Parameters
Section titled “Parameters”string
collection?
Section titled “collection?”string
Returns
Section titled “Returns”Promise<StoredValue>
getAll()
Section titled “getAll()”
abstractgetAll(collection?):Promise<Record<string,StoredValue>>
Defined in: .build/typescript/packages/core/src/storage/kv-store/index.ts:22
Parameters
Section titled “Parameters”collection?
Section titled “collection?”string
Returns
Section titled “Returns”Promise<Record<string, StoredValue>>
delete()
Section titled “delete()”
abstractdelete(key,collection?):Promise<boolean>
Defined in: .build/typescript/packages/core/src/storage/kv-store/index.ts:23
Parameters
Section titled “Parameters”string
collection?
Section titled “collection?”string
Returns
Section titled “Returns”Promise<boolean>