@valkey/client
Version:
The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.
18 lines (17 loc) • 399 B
TypeScript
import { ValkeyCommandArguments } from ".";
export declare function transformArguments(): ValkeyCommandArguments;
type RawReply = [
"flags",
Array<string>,
"redirect",
number,
"prefixes",
Array<string>
];
interface Reply {
flags: Set<string>;
redirect: number;
prefixes: Array<string>;
}
export declare function transformReply(reply: RawReply): Reply;
export {};