mirror of
https://gitlab.com/octtspacc/sitoctt
synced 2025-06-05 22:09:20 +02:00
15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
"use strict";
|
|
|
|
const EventImpl = require("./Event-impl").implementation;
|
|
|
|
const HashChangeEventInit = require("../generated/HashChangeEventInit");
|
|
|
|
class HashChangeEventImpl extends EventImpl {
|
|
|
|
}
|
|
HashChangeEventImpl.defaultInit = HashChangeEventInit.convert(undefined, undefined);
|
|
|
|
module.exports = {
|
|
implementation: HashChangeEventImpl
|
|
};
|