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

8 lines
339 B
TypeScript
Raw Normal View History

2025-02-11 15:06:41 +01:00
import { RedisCommandArgument, RedisCommandArguments } from '.';
export interface AuthOptions {
username?: RedisCommandArgument;
password: RedisCommandArgument;
}
export declare function transformArguments({ username, password }: AuthOptions): RedisCommandArguments;
export declare function transformReply(): RedisCommandArgument;