Skip to main content
Deno 2 is finally here 🎉️
Learn more
type alias tkvKeyPrefix
import { type tkvKeyPrefix } from "https://deno.land/x/tkv@v0.1.0/mod.ts";

Gives all possible prefixes for a given key type.

definition: Key extends readonly [infer Prefix, ...infer Rest extends Deno.KvKey] ? readonly [Prefix] | readonly [Prefix, ...tkvKeyPrefix<Rest>] : never