Base type for event maps used with TypedEventEmitter.
Each key is an event name and the value is a tuple representing the arguments passed to the listeners of that event.
interface MyEvents extends EventMap { data: [string]; ready: [];} Copy
interface MyEvents extends EventMap { data: [string]; ready: [];}
Base type for event maps used with TypedEventEmitter.
Each key is an event name and the value is a tuple representing the arguments passed to the listeners of that event.