mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-20 05:14:44 +00:00
9 lines
291 B
JavaScript
9 lines
291 B
JavaScript
"use strict";
|
|
const UIEventImpl = require("./UIEvent-impl").implementation;
|
|
|
|
const FocusEventInit = require("../generated/FocusEventInit");
|
|
|
|
class FocusEventImpl extends UIEventImpl {}
|
|
FocusEventImpl.defaultInit = FocusEventInit.convert(undefined);
|
|
|
|
exports.implementation = FocusEventImpl;
|