crapifyme
Version:
Ultra-fast developer productivity CLI tools - remove comments, logs, and more
22 lines • 850 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IssueSeverity = exports.ScriptType = void 0;
var ScriptType;
(function (ScriptType) {
ScriptType["LATIN_EXTENDED"] = "latin-extended";
ScriptType["CYRILLIC"] = "cyrillic";
ScriptType["CJK"] = "cjk";
ScriptType["ARABIC"] = "arabic";
ScriptType["GREEK"] = "greek";
ScriptType["INVISIBLE"] = "invisible";
ScriptType["CONFUSABLE"] = "confusable";
ScriptType["OTHER"] = "other";
})(ScriptType || (exports.ScriptType = ScriptType = {}));
var IssueSeverity;
(function (IssueSeverity) {
IssueSeverity["LOW"] = "low";
IssueSeverity["MEDIUM"] = "medium";
IssueSeverity["HIGH"] = "high";
IssueSeverity["CRITICAL"] = "critical";
})(IssueSeverity || (exports.IssueSeverity = IssueSeverity = {}));
//# sourceMappingURL=types.js.map