igniteui-react-core
Version:
Ignite UI React Core.
20 lines (19 loc) • 1.05 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { markEnum } from "./type";
export var GeometryType = /*@__PURE__*/ (function (GeometryType) {
GeometryType[GeometryType["Group"] = 0] = "Group";
GeometryType[GeometryType["Line"] = 1] = "Line";
GeometryType[GeometryType["Rectangle"] = 2] = "Rectangle";
GeometryType[GeometryType["Ellipse"] = 3] = "Ellipse";
GeometryType[GeometryType["Path"] = 4] = "Path";
return GeometryType;
})({});
/**
* @hidden
*/
export let GeometryType_$type = /*@__PURE__*/ markEnum('GeometryType', 'Group,0|Line,1|Rectangle,2|Ellipse,3|Path,4');