@bitbybit-dev/base
Version:
Bit By Bit Developers Base CAD Library to Program Geometry
20 lines (19 loc) • 581 B
JavaScript
/* eslint-disable @typescript-eslint/no-namespace */
export var Base;
(function (Base) {
let horizontalAlignEnum;
(function (horizontalAlignEnum) {
/**
* Aligns to the left
*/
horizontalAlignEnum["left"] = "left";
/**
* Aligns to the center
*/
horizontalAlignEnum["center"] = "center";
/**
* Aligns to the right
*/
horizontalAlignEnum["right"] = "right";
})(horizontalAlignEnum = Base.horizontalAlignEnum || (Base.horizontalAlignEnum = {}));
})(Base || (Base = {}));