UNPKG

@variablesoftware/mock-kv

Version:

🎛️🏷️✨ Mock KV Namespace for testing Cloudflare Workers

5 lines (4 loc) 226 B
import type { KVMap } from "../../types/MockKVNamespace"; export declare function getHandler(data: KVMap): (key: string, opts?: { type?: "text" | "json"; }) => Promise<string | Record<string, unknown> | unknown[] | null>;