UNPKG

@foblex/core

Version:

A core library providing a set of utilities and interfaces for various projects.

4 lines (3 loc) 122 B
export interface IHandler<TRequest = void, TResponse = void> { handle(request?: TRequest, ...args: any): TResponse; }