Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/prevalence/mod.ts>KvValue

Prevalence for Deno, like Prevayler.
Latest
type alias KvValue
import { type KvValue } from "https://deno.land/x/prevalence@0.1.2/mod.ts";

Things that Deno.Kv can store as values.

definition:
| undefined
| null
| boolean
| number
| string
| bigint
| Uint8Array
| T[]
| Record<string | number, T>
| Map<T, T>
| Set<T>
| Date
| RegExp