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.

12 lines (11 loc) 260 B
export declare class Log { readonly content: string; private readonly metadata?; private constructor(); static create(content: string, metadata?: Metadata): Log; toObject(): object; } type Metadata = { [key: string]: any; }; export {};