mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 04:10:04 +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
|
|
};
|