import { CommandParser } from '../client/parser'; import { RedisArgument, ArrayReply, BlobStringReply, Command } from '../RESP/types'; export default { NOT_KEYED_COMMAND: true, IS_READ_ONLY: true, /** * Returns the replica nodes replicating from the specified primary node * @param parser - The Redis command parser * @param nodeId - Node ID of the primary node */ parseCommand(parser: CommandParser, nodeId: RedisArgument) { parser.push('CLUSTER', 'REPLICAS', nodeId); }, transformReply: undefined as unknown as () => ArrayReply } as const satisfies Command;