@deno/kv
Version:
A Deno KV client library optimized for Node.js.
14 lines (13 loc) • 820 B
TypeScript
import { Type as KvEntry } from "./KvEntry.js";
export declare namespace $.com.deno.kv.datapath {
type ReadRangeOutput = {
values: KvEntry[];
};
}
export type Type = $.com.deno.kv.datapath.ReadRangeOutput;
export declare function getDefaultValue(): $.com.deno.kv.datapath.ReadRangeOutput;
export declare function createValue(partialValue: Partial<$.com.deno.kv.datapath.ReadRangeOutput>): $.com.deno.kv.datapath.ReadRangeOutput;
export declare function encodeJson(value: $.com.deno.kv.datapath.ReadRangeOutput): unknown;
export declare function decodeJson(value: any): $.com.deno.kv.datapath.ReadRangeOutput;
export declare function encodeBinary(value: $.com.deno.kv.datapath.ReadRangeOutput): Uint8Array;
export declare function decodeBinary(binary: Uint8Array): $.com.deno.kv.datapath.ReadRangeOutput;