UNPKG

@nestjstools/messaging

Version:

Simplifies asynchronous and synchronous message handling with support for buses, handlers, channels, and consumers. Build scalable, decoupled applications with ease and reliability.

7 lines (6 loc) 184 B
import { Log } from './log'; export interface MessagingLogger { error(message: string | Log): void; log(message: string | Log): void; debug(message: string | Log): void; }