recoder-code
Version:
Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities
11 lines (10 loc) • 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 {};