UNPKG

@datr.tech/marble-transformer-core

Version:
17 lines (16 loc) 401 B
/** * @module interfaces/core/handlers */ import { IHandlerInput } from './IHandlerInput'; import { IHandlerOutput } from './IHandlerOutput'; /** * @name IHandler * * @description The interface for each handler with child inputs and outputs. * * @author Datr.Tech Admin <admin@datr.tech> * @version 0.3.2 */ export interface IHandler { (args: IHandlerInput): IHandlerOutput; }