nanokv
    Preparing search index...

    Type Alias KvListSelector<K, P>

    KvListSelector:
        | { prefix: P }
        | { prefix: P; start: KvKeyPrefix<RemoveKvKeyPrefix<K, P>> }
        | { end: KvKeyPrefix<RemoveKvKeyPrefix<K, P>>; prefix: P }
        | {
            end: KvKeyPrefix<RemoveKvKeyPrefix<K, P>>;
            start: KvKeyPrefix<RemoveKvKeyPrefix<K, P>>;
        }

    A selector that selects the range of data returned by a list operation on a NanoKV.

    The selector can either be a prefix selector or a range selector. A prefix selector selects all keys that start with the given prefix (optionally starting at a given key). A range selector selects all keys that are lexicographically between the given start and end keys.

    Type Parameters