interface CommonEventEmitter { on<Key extends keyof Events>(type: Key, handler: Handler<Events[Key]>): this; }
Returns:
this