Skip to main content
Deno 2 is finally here ๐ŸŽ‰๏ธ
Learn more
Module

x/tpy/src/types/pylon.d.ts>KV.OperationOptions.Items

๐Ÿ”‘ A strongly typed Pylon API client.
Latest
interface KV.OperationOptions.Items
import { type KV } from "https://deno.land/x/tpy@v1.0.0-RC/src/types/pylon.d.ts";
const { Items } = KV.OperationOptions;

Operation options for retrieving keys.

Properties

optional
from: string

Returns keys after from. Meaning, if you had the keys ["a", "b", "c"] in the namespace, calling kv.items({from: "a"}) would return the items for the keys ["b", "c"].

optional
limit: number

The number of keys to return in the list call.

Default and maximum is 100. Minimum is 1.