@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) • 565 B
TypeScript
import { ValkeyCommandArguments } from ".";
import { FunctionListItemReply, FunctionListRawItemReply } from "./generic-transformers";
export declare function transformArguments(pattern?: string): ValkeyCommandArguments;
type FunctionListWithCodeRawItemReply = [
...FunctionListRawItemReply,
"library_code",
string
];
interface FunctionListWithCodeItemReply extends FunctionListItemReply {
libraryCode: string;
}
export declare function transformReply(reply: Array<FunctionListWithCodeRawItemReply>): Array<FunctionListWithCodeItemReply>;
export {};