@aurigma/design-atoms-interfaces
Version:
20 lines (19 loc) • 585 B
TypeScript
/**
* The origin of coordinates.
*
* {@link ILocationData|See an example}.
*/
export declare enum OriginPointType {
/** The left edge. */
Left = "left",
/** The right edge. */
Right = "right",
/** The top edge. */
Top = "top",
/** The bottom edge. */
Bottom = "bottom",
/** The center of the product. */
Center = "center"
}
export type HorizontalOriginPointType = OriginPointType.Left | OriginPointType.Right | OriginPointType.Center;
export type VerticalOriginPointType = OriginPointType.Top | OriginPointType.Bottom | OriginPointType.Center;