mirror of
https://github.com/cachix/install-nix-action.git
synced 2025-06-08 18:04:29 +00:00
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
"use strict";
|
|
|
|
const EventImpl = require("./Event-impl").implementation;
|
|
|
|
const HashChangeEventInit = require("../generated/HashChangeEventInit");
|
|
|
|
class HashChangeEventImpl extends EventImpl {
|
|
|
|
}
|
|
HashChangeEventImpl.defaultInit = HashChangeEventInit.convert(undefined);
|
|
|
|
module.exports = {
|
|
implementation: HashChangeEventImpl
|
|
};
|