d2lang-js
Version:
An unofficial interface for building D2 diagram files in javascript
30 lines (29 loc) • 940 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Shape;
(function (Shape) {
Shape["rectangle"] = "rectangle";
Shape["square"] = "square";
Shape["page"] = "page";
Shape["parallelogram"] = "parallelogram";
Shape["document"] = "document";
Shape["cylinder"] = "cylinder";
Shape["queue"] = "queue";
Shape["package"] = "package";
Shape["step"] = "step";
Shape["callout"] = "callout";
Shape["stored_data"] = "stored_data";
Shape["person"] = "person";
Shape["diamond"] = "diamond";
Shape["oval"] = "oval";
Shape["circle"] = "circle";
Shape["hexagon"] = "hexagon";
Shape["cloud"] = "cloud";
Shape["text"] = "text";
Shape["code"] = "code";
Shape["sql_table"] = "sql_table";
Shape["image"] = "image";
Shape["class"] = "class";
Shape["sequence_diagram"] = "sequence_diagram";
})(Shape || (Shape = {}));
exports.default = Shape;