mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-06-12 05:54:10 +02:00
14 lines
320 B
JavaScript
14 lines
320 B
JavaScript
"use strict";
|
|
|
|
const EventImpl = require("./Event-impl").implementation;
|
|
|
|
const ProgressEventInit = require("../generated/ProgressEventInit");
|
|
|
|
class ProgressEventImpl extends EventImpl {
|
|
|
|
}
|
|
ProgressEventImpl.defaultInit = ProgressEventInit.convert(undefined);
|
|
|
|
module.exports = {
|
|
implementation: ProgressEventImpl
|
|
};
|