Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

KVPacker

import type { KVPacker } from "https://raw.githubusercontent.com/worker-tools/cloudflare-kv-storage/master/packer.ts";
interface KVPacker {
get(
kv: KVNamespace,
key: string,
opts?: any,
): Promise<any>;
set(
kv: KVNamespace,
key: string,
value: any,
opts?: any,
): Promise<void>;
}

§Methods

§
get(
kv: KVNamespace,
key: string,
opts?: any,
): Promise<any>
[src]
§
set(
kv: KVNamespace,
key: string,
value: any,
opts?: any,
): Promise<void>
[src]