interface KvListOptions {
    limit?: number;
    reverse?: boolean;
}

Properties

Properties

limit?: number

The maximum number of key-value pairs to return. If not specified, all matching key-value pairs will be returned.

reverse?: boolean

Whether to reverse the order of the returned key-value pairs. If not specified, the order will be ascending from the start of the range as per the lexicographical ordering of the keys. If true, the order will be descending from the end of the range.

The default value is false.