Files
backend_task/node_modules/@redis/client/dist/lib/commands/FAILOVER.d.ts
T

13 lines
301 B
TypeScript
Raw Normal View History

2025-02-11 15:06:41 +01:00
interface FailoverOptions {
TO?: {
host: string;
port: number;
FORCE?: true;
};
ABORT?: true;
TIMEOUT?: number;
}
export declare function transformArguments(options?: FailoverOptions): Array<string>;
export declare function transformReply(): string;
export {};