nestjs-rabbitmq-retry
Version:
NestJS RabbitMQ Retry
6 lines (5 loc) • 323 B
TypeScript
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;
}