You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
11 lines
375 B
TypeScript
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;
|