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