export type EventsWithWildcard<Events extends Record<EventType, unknown>> = Events & { '*': Events[keyof Events]; };
References: EventType