jsdom
Version:
A JavaScript implementation of many web standards
13 lines (8 loc) • 326 B
JavaScript
;
const MouseEventImpl = require("./MouseEvent-impl").implementation;
const WheelEventInit = require("../generated/WheelEventInit");
class WheelEventImpl extends MouseEventImpl {}
WheelEventImpl.defaultInit = WheelEventInit.convert(undefined, undefined);
module.exports = {
implementation: WheelEventImpl
};