UNPKG

@highcharts/dashboards

Version:
15 lines (14 loc) 262 B
/** * An object containing `x` and `y` properties for the position of an element. */ export interface PositionObject { /** * The X position. */ x: number; /** * The Y position. */ y: number; } export default PositionObject;