import type { IEventName, IEventListener } from "../types"; /** * State of the Event Emitter */ export type IEmitterState = { store: Map>; stack: IEventName[]; };