import { CommandParser } from '../client/parser'; import { ArrayReply, BlobStringReply, Command } from '../RESP/types'; import { RedisVariadicArgument } from './generic-transformers'; export default { CACHEABLE: true, IS_READ_ONLY: true, /** * Constructs the SINTER command * * @param parser - The command parser * @param keys - One or more set keys to compute the intersection from * @see https://redis.io/commands/sinter/ */ parseCommand(parser: CommandParser, keys: RedisVariadicArgument) { parser.push('SINTER'); parser.pushKeys(keys); }, transformReply: undefined as unknown as () => ArrayReply } as const satisfies Command;