mirror of
https://github.com/actions/setup-node.git
synced 2025-12-19 06:47:08 +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
|
|
};
|