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) 118 B
import { IHandler } from './i-handler'; export interface IValidator<TRequest> extends IHandler<TRequest, boolean> { }