mirror of
https://github.com/cachix/install-nix-action.git
synced 2025-06-08 18:04:29 +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;
|