A Workers KV namespace binding.
get(key: string): Promise<string | null>
Reads a value as text.
put(): Promise<void>
Writes a value.
delete(key: string): Promise<void>
Removes a value. Succeeds whether or not the key existed.
list(options?: KvListOptions): Promise<KvListResult>
Lists keys, one page at a time.