mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2026-03-23 07:58:18 +03: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
|
|
};
|