import { IChassisMiddleware, IOperation } from "../interfaces"; /** * Emit a local Event * ------------------ * */ export default class Emit implements IChassisMiddleware { name: string; title: string; /** * feature to send an event on local event bus * * @param context * @param options * @returns {TargetEndpoint} */ fn(op: IOperation, _options: any): Function; }