mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-21 13:34:46 +00:00
14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
"use strict";
|
|
|
|
const EventImpl = require("./Event-impl").implementation;
|
|
|
|
const ErrorEventInit = require("../generated/ErrorEventInit");
|
|
|
|
class ErrorEventImpl extends EventImpl {
|
|
|
|
}
|
|
ErrorEventImpl.defaultInit = ErrorEventInit.convert(undefined);
|
|
|
|
module.exports = {
|
|
implementation: ErrorEventImpl
|
|
};
|