UNPKG

@deno/kv

Version:

A Deno KV client library optimized for Node.js.

5 lines (4 loc) 241 B
import { KvKey, KvKeyPart } from "./kv_types.js"; export declare function packKey(kvKey: KvKey): Uint8Array; export declare function packKeyPart(kvKeyPart: KvKeyPart): Uint8Array; export declare function unpackKey(bytes: Uint8Array): KvKey;