CURSOR_READ.d.ts 429 B

12345678
  1. import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands';
  2. export declare const FIRST_KEY_INDEX = 1;
  3. export declare const IS_READ_ONLY = true;
  4. interface CursorReadOptions {
  5. COUNT?: number;
  6. }
  7. export declare function transformArguments(index: RedisCommandArgument, cursor: number, options?: CursorReadOptions): RedisCommandArguments;
  8. export { transformReply } from './AGGREGATE_WITHCURSOR';