fastify-rabbitmq
Version:
A Fastify RabbitMQ Plugin Developed in Pure TypeScript.
14 lines (13 loc) • 445 B
TypeScript
import { ConnectionOptions } from "rabbitmq-client";
export interface FastifyRabbitMQOptions {
/**
* @since 1.0.0
* @remarks Connection String or object pointing to the RabbitMQ Broker Services
*/
connection: string | ConnectionOptions;
/**
* @since 1.0.0
* @remarks To set the custom nNamespace within this plugin instance. Used to register this plugin more than one time.
*/
namespace?: string;
}