MSET.d.ts 403 B

1234567891011
  1. import { RedisJSON } from '.';
  2. import { RedisCommandArgument } from '@redis/client/dist/lib/commands';
  3. export declare const FIRST_KEY_INDEX = 1;
  4. interface JsonMSetItem {
  5. key: RedisCommandArgument;
  6. path: RedisCommandArgument;
  7. value: RedisJSON;
  8. }
  9. export declare function transformArguments(items: Array<JsonMSetItem>): Array<string>;
  10. export declare function transformReply(): 'OK';
  11. export {};