import { IBus, IDispatcher } from "@tandem/mesh"; export interface IBrokerBus extends IBus { actors: Array>; register(actor: IDispatcher): any; unregister(actor: IDispatcher): any; }