UNPKG

498 BJavaScriptView Raw
1/**
2 * @category Enums
3 */
4export var ShapeType;
5(function (ShapeType) {
6 ShapeType["char"] = "char";
7 ShapeType["character"] = "character";
8 ShapeType["circle"] = "circle";
9 ShapeType["edge"] = "edge";
10 ShapeType["image"] = "image";
11 ShapeType["images"] = "images";
12 ShapeType["line"] = "line";
13 ShapeType["polygon"] = "polygon";
14 ShapeType["square"] = "square";
15 ShapeType["star"] = "star";
16 ShapeType["triangle"] = "triangle";
17})(ShapeType || (ShapeType = {}));