mirror of
https://github.com/actions/setup-node.git
synced 2025-12-15 17:31:39 +08:00
13 lines
315 B
JavaScript
13 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
|
|
};
|