UNPKG

@nam088/nestjs-rabbitmq

Version:

A comprehensive RabbitMQ module for NestJS with decorator-based message handling

9 lines (8 loc) 314 B
export declare const RABBIT_RPC_METADATA = "RABBIT_RPC_METADATA"; export interface RabbitRPCOptions { connectionName?: string; noAck?: boolean; prefetchCount?: number; queue: string; } export declare const RabbitRPC: (options: RabbitRPCOptions) => import("@nestjs/common").CustomDecorator<string>;