mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-02 20:00:05 +02:00
15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
"use strict";
|
|
|
|
const EventImpl = require("./Event-impl").implementation;
|
|
|
|
const ProgressEventInit = require("../generated/ProgressEventInit");
|
|
|
|
class ProgressEventImpl extends EventImpl {
|
|
|
|
}
|
|
ProgressEventImpl.defaultInit = ProgressEventInit.convert(undefined, undefined);
|
|
|
|
module.exports = {
|
|
implementation: ProgressEventImpl
|
|
};
|