mirror of
https://github.com/actions/setup-python.git
synced 2025-06-28 13:43:47 +00: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
|
|
};
|