mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-21 05:24:45 +00:00
14 lines
308 B
JavaScript
14 lines
308 B
JavaScript
"use strict";
|
|
|
|
const UIEventImpl = require("./UIEvent-impl").implementation;
|
|
|
|
const TouchEventInit = require("../generated/TouchEventInit");
|
|
|
|
class TouchEventImpl extends UIEventImpl {
|
|
|
|
}
|
|
TouchEventImpl.defaultInit = TouchEventInit.convert(undefined);
|
|
|
|
module.exports = {
|
|
implementation: TouchEventImpl
|
|
};
|