mirror of
https://github.com/actions/stale.git
synced 2026-03-04 02:28:17 +00: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
|
|
};
|