mirror of
https://gitlab.com/octtspacc/sitoctt
synced 2025-06-05 22:09:20 +02:00
12 lines
372 B
JavaScript
12 lines
372 B
JavaScript
"use strict";
|
|
const UIEventImpl = require("./UIEvent-impl").implementation;
|
|
const InputEventInit = require("../generated/InputEventInit");
|
|
|
|
// https://w3c.github.io/uievents/#interface-inputevent
|
|
class InputEventImpl extends UIEventImpl { }
|
|
InputEventImpl.defaultInit = InputEventInit.convert(undefined, undefined);
|
|
|
|
module.exports = {
|
|
implementation: InputEventImpl
|
|
};
|