INCRBY.d.ts 289 B

12345678
  1. export declare const FIRST_KEY_INDEX = 1;
  2. interface IncrByItem {
  3. item: string;
  4. incrementBy: number;
  5. }
  6. export declare function transformArguments(key: string, items: IncrByItem | Array<IncrByItem>): Array<string>;
  7. export declare function transformReply(): Array<number>;
  8. export {};