@cleardu/rmq
Version:
Nest - modern, fast, powerful node.js web framework (@rmq)
19 lines (18 loc) • 334 B
text/typescript
import { IRMQConnection } from 'nestjs-rmq';
export interface RmqModuleOptions {
config: {
name: string;
uri: string;
isGlobal?: boolean;
key?: string;
};
}
export interface RMQConfig {
connection: IRMQConnection;
uri: string;
}
export interface RMQBroadcastModuleOptions {
config: {
uri: string;
};
}