UNPKG

nestjs-rabbitmq-retry

Version:
6 lines (5 loc) 323 B
import { DynamicModule } from '@nestjs/common'; import { ConfigChannel, ConfigQueue } from './rabbitmq.types'; export declare class RabbitMQModule { static forRoot(host: string, username: string, password: string, isAMQPS?: boolean, retry?: number, queues?: ConfigQueue[], channels?: ConfigChannel[]): DynamicModule; }