@valkey/client
Version:
The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.
11 lines (10 loc) • 492 B
TypeScript
import { ValkeyCommandArgument, ValkeyCommandArguments } from ".";
import { AuthOptions } from "./AUTH";
interface MigrateOptions {
COPY?: true;
REPLACE?: true;
AUTH?: AuthOptions;
}
export declare function transformArguments(host: ValkeyCommandArgument, port: number, key: ValkeyCommandArgument | Array<ValkeyCommandArgument>, destinationDb: number, timeout: number, options?: MigrateOptions): ValkeyCommandArguments;
export declare function transformReply(): string;
export {};