SYNUPDATE.d.ts 349 B

1234567
  1. import { RedisCommandArguments } from '@redis/client/dist/lib/commands';
  2. interface SynUpdateOptions {
  3. SKIPINITIALSCAN?: true;
  4. }
  5. export declare function transformArguments(index: string, groupId: string, terms: string | Array<string>, options?: SynUpdateOptions): RedisCommandArguments;
  6. export declare function transformReply(): 'OK';
  7. export {};