ARRPOP.d.ts 298 B

1234
  1. import { RedisJSON } from '.';
  2. export declare const FIRST_KEY_INDEX = 1;
  3. export declare function transformArguments(key: string, path?: string, index?: number): Array<string>;
  4. export declare function transformReply(reply: null | string | Array<null | string>): null | RedisJSON | Array<RedisJSON>;