@datr.tech/marble-transformer-core
Version:
Marble transformer core
15 lines (14 loc) • 421 B
TypeScript
/**
* @module interfaces/core/handlers
*/
import { IHandlerAccumulator } from './IHandlerAccumulator';
/**
* @name IHandlerOutput
*
* @description The output interface for each 'handler', which is directly
* referenced within {@link interfaces/core/handlers/IHandler}.
*
* @author Datr.Tech Admin <admin@datr.tech>
* @version 0.3.2
*/
export type IHandlerOutput = IHandlerAccumulator;