@valkey/client
Version:
The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.
10 lines (9 loc) • 465 B
TypeScript
import { ValkeyCommandArgument, ValkeyCommandArguments } from ".";
export declare const FIRST_KEY_INDEX = 1;
interface ZInterStoreOptions {
WEIGHTS?: Array<number>;
AGGREGATE?: "SUM" | "MIN" | "MAX";
}
export declare function transformArguments(destination: ValkeyCommandArgument, keys: Array<ValkeyCommandArgument> | ValkeyCommandArgument, options?: ZInterStoreOptions): ValkeyCommandArguments;
export declare function transformReply(): number;
export {};