This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/types.js
2022-10-15 19:16:08 +02:00

19 lines
645 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutputFormat = exports.OutputTarget = void 0;
/////////////////////////////////////////////////////
//
// Application types
//
var OutputTarget;
(function (OutputTarget) {
OutputTarget["STDOUT"] = "console";
OutputTarget["FILE"] = "file";
})(OutputTarget = exports.OutputTarget || (exports.OutputTarget = {}));
var OutputFormat;
(function (OutputFormat) {
OutputFormat["text"] = "text";
OutputFormat["json"] = "json";
})(OutputFormat = exports.OutputFormat || (exports.OutputFormat = {}));
;
//# sourceMappingURL=types.js.map