"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