arkit
Version:
Visualises JavaScript, TypeScript and Flow codebases as meaningful and committable architecture diagrams
22 lines (21 loc) • 823 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Component name formats
*/
var ComponentNameFormat;
(function (ComponentNameFormat) {
ComponentNameFormat["BASE_NAME"] = "base";
ComponentNameFormat["FULL_NAME"] = "full";
ComponentNameFormat["COMPLETE_PATH"] = "complete";
})(ComponentNameFormat = exports.ComponentNameFormat || (exports.ComponentNameFormat = {}));
var OutputDirection;
(function (OutputDirection) {
OutputDirection["HORIZONTAL"] = "horizontal";
OutputDirection["VERTICAL"] = "vertical";
})(OutputDirection = exports.OutputDirection || (exports.OutputDirection = {}));
var OutputFormat;
(function (OutputFormat) {
OutputFormat["SVG"] = "svg";
OutputFormat["PNG"] = "png";
})(OutputFormat = exports.OutputFormat || (exports.OutputFormat = {}));