setup-python/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js
Danny McCormick 39c08a0eaa Initial pass
2019-06-26 21:12:00 -04: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
};