1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00
Files
node-redis/packages/client/lib/commands/PFMERGE.ts

11 lines
375 B
TypeScript

import { RedisCommandArguments } from '.';
import { pushVerdictArguments } from './generic-transformers';
export const FIRST_KEY_INDEX = 1;
export function transformArguments(destination: string, source: string | Array<string>): RedisCommandArguments {
return pushVerdictArguments(['PFMERGE', destination], source);
}
export declare function transformReply(): string;