mirror of
https://gitlab.com/octtspacc/sitoctt
synced 2025-06-05 22:09:20 +02:00
10 lines
302 B
JavaScript
10 lines
302 B
JavaScript
"use strict";
|
|
const UIEventImpl = require("./UIEvent-impl").implementation;
|
|
|
|
const FocusEventInit = require("../generated/FocusEventInit");
|
|
|
|
class FocusEventImpl extends UIEventImpl {}
|
|
FocusEventImpl.defaultInit = FocusEventInit.convert(undefined, undefined);
|
|
|
|
exports.implementation = FocusEventImpl;
|