mirror of
https://github.com/actions/setup-python.git
synced 2026-01-29 08:03:14 +03:00
15 lines
332 B
JavaScript
15 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
|
|
};
|