Trym Lund Flogard aae7f9ffbb update files
2021-06-02 16:04:09 +02:00

19 lines
599 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoFileOption = void 0;
var NoFileOption;
(function (NoFileOption) {
/**
* Default. Output a warning but do not fail the action
*/
NoFileOption["warn"] = "warn";
/**
* Fail the action with an error message
*/
NoFileOption["error"] = "error";
/**
* Do not output any warnings or errors, the action does not fail
*/
NoFileOption["ignore"] = "ignore";
})(NoFileOption = exports.NoFileOption || (exports.NoFileOption = {}));
//# sourceMappingURL=NoFileOption.js.map