Files
PaperPhone/server/node_modules/@redis/client/dist/lib/commands/AUTH.d.ts
619dev 70982e58b1 init
2026-03-25 14:31:05 +08: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;