Files
Star-wars-card-game/node_modules/@redis/client/dist/lib/commands/AUTH.d.ts
2026-01-28 00:55:06 +03:00

8 lines
339 B
TypeScript

import { RedisCommandArgument, RedisCommandArguments } from '.';
export interface AuthOptions {
username?: RedisCommandArgument;
password: RedisCommandArgument;
}
export declare function transformArguments({ username, password }: AuthOptions): RedisCommandArguments;
export declare function transformReply(): RedisCommandArgument;