According to documentation on MDN¹, the WheelEvent interface
inherits properties from MouseEvent, which in turn inherits from
UIEvent, and that inherits from Event.
Embed MouseEvent in WheelEvent type in order to gain access to
additional properties in WheelEvent.
According to documentation on MDN¹, the WheelEvent interface inherits properties from MouseEvent, which in turn inherits from UIEvent, and that inherits from Event.
Embed MouseEvent in WheelEvent type in order to gain access to additional properties in WheelEvent.
[1] https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent
Fixes #68.