import { MAX, MIN, Tuple } from "../storage/types"; import { RemoveTuplePrefix, TuplePrefix } from "./typeHelpers"; export type ScanArgs> = PrefixScanArgs; export type PrefixScanArgs> = { prefix?: P; gt?: AllowMinMax>>; gte?: AllowMinMax>>; lt?: AllowMinMax>>; lte?: AllowMinMax>>; limit?: number; reverse?: boolean; }; type AllowMinMax = { [K in keyof T]: T[K] | typeof MIN | typeof MAX; }; export type TxId = string; export type Unsubscribe = () => void; export {}; //# sourceMappingURL=../../src/database/types.d.ts.map