import { CommandParser } from '../client/parser'; import { ArrayReply, Command, NullReply, NumberReply, RedisArgument } from '../RESP/types'; import { RedisVariadicArgument } from './generic-transformers'; export default { /** * Removes the expiration from the specified fields in a hash. * @param parser - The Redis command parser. * @param key - Key of the hash. * @param fields - Fields to remove expiration from. */ parseCommand( parser: CommandParser, key: RedisArgument, fields: RedisVariadicArgument ) { parser.push('HPERSIST'); parser.pushKey(key); parser.push('FIELDS'); parser.pushVariadicWithLength(fields); }, transformReply: undefined as unknown as () => ArrayReply | NullReply } as const satisfies Command;