DECRBY.d.ts 324 B

12345
  1. import { RedisCommandArguments } from '@redis/client/dist/lib/commands';
  2. import { IncrDecrOptions } from '.';
  3. export declare const FIRST_KEY_INDEX = 1;
  4. export declare function transformArguments(key: string, value: number, options?: IncrDecrOptions): RedisCommandArguments;
  5. export declare function transformReply(): number;