UNPKG

@foblex/mediator

Version:

An Angular library that implements the mediator pattern, providing a centralized way to handle requests with optional validation and execution pipelines.

4 lines (3 loc) 131 B
import { IHandler } from './i-handler'; export interface IExecution<TRequest, TResponse> extends IHandler<TRequest, TResponse> { }