@deno/kv
Version:
A Deno KV client library optimized for Node.js.
8 lines (7 loc) • 342 B
TypeScript
import { KvService } from "./kv_types.js";
/**
* Creates a new KvService instance that can be used to access Deno's native implementation (only works in the Deno runtime!)
*
* Requires the --unstable flag to `deno run` and any applicable --allow-read/allow-write/allow-net flags
*/
export declare function makeNativeService(): KvService;