@valkey/client
Version:
The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.
8 lines (7 loc) • 346 B
TypeScript
import { ValkeyCommandArgument, ValkeyCommandArguments } from ".";
export interface AuthOptions {
username?: ValkeyCommandArgument;
password: ValkeyCommandArgument;
}
export declare function transformArguments({ username, password, }: AuthOptions): ValkeyCommandArguments;
export declare function transformReply(): ValkeyCommandArgument;