SET.d.ts 323 B

1234567891011
  1. import { RedisJSON } from '.';
  2. export declare const FIRST_KEY_INDEX = 1;
  3. interface NX {
  4. NX: true;
  5. }
  6. interface XX {
  7. XX: true;
  8. }
  9. export declare function transformArguments(key: string, path: string, json: RedisJSON, options?: NX | XX): Array<string>;
  10. export declare function transformReply(): 'OK' | null;
  11. export {};