mirror of
https://github.com/actions/setup-node.git
synced 2025-12-15 17:31:39 +08:00
15 lines
302 B
JavaScript
15 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
|
|
};
|