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

11 lines
354 B
TypeScript

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