UNPKG

@aurigma/design-atoms-interfaces

Version:

19 lines (18 loc) 526 B
/** * The origin of coordinates. * * {@link ILocationData|See an example}. */ export var OriginPointType; (function (OriginPointType) { /** The left edge. */ OriginPointType["Left"] = "left"; /** The right edge. */ OriginPointType["Right"] = "right"; /** The top edge. */ OriginPointType["Top"] = "top"; /** The bottom edge. */ OriginPointType["Bottom"] = "bottom"; /** The center of the product. */ OriginPointType["Center"] = "center"; })(OriginPointType || (OriginPointType = {}));