UNPKG

@nestjstools/messaging-rabbitmq-extension

Version:

Extension to handle messages and dispatch them over AMQP protocol

9 lines (8 loc) 349 B
import { Channel } from '@nestjstools/messaging'; import { AmqpChannelConfig } from '@nestjstools/messaging'; import { Connection } from 'rabbitmq-client'; export declare class AmqpChannel extends Channel<AmqpChannelConfig> { readonly connection: Connection; readonly config: AmqpChannelConfig; constructor(config: AmqpChannelConfig); }