You've already forked setup-python
mirror of
https://github.com/actions/setup-python.git
synced 2025-08-11 08:04:37 +07:00
15 lines
320 B
JavaScript
15 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
|
|
};
|