KVNamespace.get()method
get(key: string, options: { type: "json" }): Promise<unknown>{
get(key: string, options: { type: "json" }): Promise<unknown>;
put(key: string, value: string): Promise<void>;
delete(key: string): Promise<void>;
}Minimal interface matching the Cloudflare Workers KV namespace runtime object.
Declares only the subset of methods CloudflareKVProvider uses, so the @cloudflare/workers-types package is not required as a dependency.
get(key: string, options: { type: "json" }): Promise<unknown>put(key: string, value: string): Promise<void>
delete(key: string): Promise<void>