@crowdin/app-project-module
Version:
Module that generates for you all common endpoints for serving standalone Crowdin App
14 lines (13 loc) • 685 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProcessFileJobType = void 0;
var ProcessFileJobType;
(function (ProcessFileJobType) {
ProcessFileJobType["PARSE_FILE"] = "parse-file";
ProcessFileJobType["BUILD_FILE"] = "build-file";
ProcessFileJobType["PRE_IMPORT"] = "pre-import-file";
ProcessFileJobType["POST_IMPORT"] = "post-import-file";
ProcessFileJobType["PRE_EXPORT"] = "pre-export-file";
ProcessFileJobType["POST_EXPORT"] = "post-export-file";
ProcessFileJobType["TRANSLATIONS_ALIGNMENT"] = "translations-alignment-file";
})(ProcessFileJobType = exports.ProcessFileJobType || (exports.ProcessFileJobType = {}));