setup-node/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js
eric sciple ae5dcb46c8 .
2020-01-24 12:30:26 -05:00

12 lines
315 B
JavaScript

"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
};