UNPKG

@message-queue-toolkit/amqp

Version:
11 lines (10 loc) 289 B
import { type ChannelModel } from 'amqplib'; export type AmqpConfig = { hostname: string; port: number; username: string; password: string; vhost: string; useTls: boolean; }; export declare function resolveAmqpConnection(config: AmqpConfig): Promise<ChannelModel>;