mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-20 05:14:44 +00:00
12 lines
315 B
JavaScript
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
|
|
};
|