dld_backend/node_modules/@redis/client/dist/lib/commands/MIGRATE.d.ts
2025-10-30 12:13:02 +05:30

11 lines
486 B
TypeScript

import { RedisCommandArgument, RedisCommandArguments } from '.';
import { AuthOptions } from './AUTH';
interface MigrateOptions {
COPY?: true;
REPLACE?: true;
AUTH?: AuthOptions;
}
export declare function transformArguments(host: RedisCommandArgument, port: number, key: RedisCommandArgument | Array<RedisCommandArgument>, destinationDb: number, timeout: number, options?: MigrateOptions): RedisCommandArguments;
export declare function transformReply(): string;
export {};