@valkey/client
Version:
The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.
14 lines (13 loc) • 510 B
TypeScript
import { ValkeyCommandArgument, ValkeyCommandArguments } from ".";
export declare const IS_READ_ONLY = true;
export declare function transformArguments(args: Array<ValkeyCommandArgument>): ValkeyCommandArguments;
type KeysAndFlagsRawReply = Array<[
ValkeyCommandArgument,
ValkeyCommandArguments
]>;
type KeysAndFlagsReply = Array<{
key: ValkeyCommandArgument;
flags: ValkeyCommandArguments;
}>;
export declare function transformReply(reply: KeysAndFlagsRawReply): KeysAndFlagsReply;
export {};