MIGRATE.d.ts 486 B

12345678910
  1. import { RedisCommandArgument, RedisCommandArguments } from '.';
  2. import { AuthOptions } from './AUTH';
  3. interface MigrateOptions {
  4. COPY?: true;
  5. REPLACE?: true;
  6. AUTH?: AuthOptions;
  7. }
  8. export declare function transformArguments(host: RedisCommandArgument, port: number, key: RedisCommandArgument | Array<RedisCommandArgument>, destinationDb: number, timeout: number, options?: MigrateOptions): RedisCommandArguments;
  9. export declare function transformReply(): string;
  10. export {};