internal
type KVStorage

Properties

set: (key: string, value: unknown) => Promise<void>
get: (key: string) => Promise<unknown | undefined>
has: (key: string) => Promise<boolean>
delete: (key: string) => Promise<void>