UNPKG

@nestjstools/messaging-rabbitmq-extension

Version:

Extension to handle messages and dispatch them over AMQP protocol

6 lines (5 loc) 272 B
import { AmqpChannel } from './amqp.channel'; import { AmqpChannelConfig, IChannelFactory } from '@nestjstools/messaging'; export declare class AmqpChannelFactory implements IChannelFactory<AmqpChannelConfig> { create(channelConfig: AmqpChannelConfig): AmqpChannel; }