/**
 * @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;
