UNPKG

mediateur

Version:

A simple library allowing the implementation of the Mediator design pattern

5 lines (4 loc) 143 B
export interface Message<TType extends string = string, TData = Record<string, unknown>, TResult = void> { type: TType; data: TData; }