MSET.d.ts 410 B

12345
  1. import { RedisCommandArgument, RedisCommandArguments } from '.';
  2. export declare const FIRST_KEY_INDEX = 1;
  3. export type MSetArguments = Array<[RedisCommandArgument, RedisCommandArgument]> | Array<RedisCommandArgument> | Record<string, RedisCommandArgument>;
  4. export declare function transformArguments(toSet: MSetArguments): RedisCommandArguments;
  5. export declare function transformReply(): RedisCommandArgument;