123
This commit is contained in:
10
node_modules/@redis/client/dist/lib/commands/MIGRATE.d.ts
generated
vendored
Normal file
10
node_modules/@redis/client/dist/lib/commands/MIGRATE.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
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 {};
|
||||
Reference in New Issue
Block a user