export abstract class EventBusEvent extends Event { protected constructor(type: EventType, eventInit?: EventInit) { super(type, eventInit); } }