1
2
3
4
5
6
7
8
9
10
11
12
| "use strict";
|
| const MouseEventImpl = require("./MouseEvent-impl").implementation;
|
| const WheelEventInit = require("../generated/WheelEventInit");
|
| class WheelEventImpl extends MouseEventImpl {}
| WheelEventImpl.defaultInit = WheelEventInit.convert(undefined);
|
| module.exports = {
| implementation: WheelEventImpl
| };
|
|