14 lines
354 B
TypeScript
14 lines
354 B
TypeScript
|
import { KV, KvKey } from "$type/types.ts";
|
||
|
|
||
|
export type KvQueryOptions = {
|
||
|
prefix?: KvKey;
|
||
|
};
|
||
|
|
||
|
export interface KvPrimitives {
|
||
|
batchGet(keys: KvKey[]): Promise<(any | undefined)[]>;
|
||
|
batchSet(entries: KV[]): Promise<void>;
|
||
|
batchDelete(keys: KvKey[]): Promise<void>;
|
||
|
query(options: KvQueryOptions): AsyncIterableIterator<KV>;
|
||
|
close(): void;
|
||
|
}
|