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.

6 lines (5 loc) 289 B
import { MessageNormalizer } from './message-normalizer'; export declare class ObjectForwardMessageNormalizer implements MessageNormalizer { normalize(message: object, type: string): Promise<string | object>; denormalize(message: string | object, type: string): Promise<object>; }