Skip to main content
Module

x/kv_sqlite/mod.ts>BaseKVMethods

Key-Value storage backed by SQLite
Latest
type alias BaseKVMethods
import { type BaseKVMethods } from "https://deno.land/x/kv_sqlite@v0.1.11/mod.ts";
definition: { clear: () => void; close: (force?: boolean) => void; delete: (key: string) => void; has: (key: string) => boolean; keys: () => IterableIterator<string>; readonly size: number; }