You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-10 11:43:01 +03:00
11 lines
358 B
TypeScript
11 lines
358 B
TypeScript
import { TransformArgumentsReply } from '.';
|
|
import { pushVerdictArguments } from './generic-transformers';
|
|
|
|
export const FIRST_KEY_INDEX = 1;
|
|
|
|
export function transformArguments(key: string, field: string | Array<string>): TransformArgumentsReply {
|
|
return pushVerdictArguments(['HDEL', key], field);
|
|
}
|
|
|
|
export declare function transformReply(): number;
|