@rxap/nest-rabbitmq
Version:
This package provides a NestJS module for integrating with RabbitMQ using exchanges. It offers a client and server implementation for message queuing and supports features like health checks and error serialization. It simplifies the process of setting up
7 lines (6 loc) • 328 B
TypeScript
import { IncomingResponse, ProducerDeserializer } from '@nestjs/microservices';
export declare class IncomingResponseDeserializer implements ProducerDeserializer {
deserialize(value: any, options?: Record<string, any>): IncomingResponse;
isExternal(value: any): boolean;
mapToSchema(value: any): IncomingResponse;
}