Skip to main content
Module

x/kv_sqlite/mod.ts>TypedKVMethods

Key-Value storage backed by SQLite
Latest
type alias TypedKVMethods
import { type TypedKVMethods } from "https://deno.land/x/kv_sqlite@v0.1.11/mod.ts";
definition: { [[Symbol.iterator]]: () => IterableIterator<Entry<string, T>>; entries: () => IterableIterator<Entry<string, T>>; get: (key: string) => T | null; set: (key: string, value: T) => void; values: () => IterableIterator<T>; }