UNPKG

@highcharts/dashboards

Version:
12 lines (11 loc) 240 B
import type BBoxObject from './BBoxObject'; /** * A rectangle. */ export interface RectangleObject extends BBoxObject { /** * The stroke width of the rectangle. */ strokeWidth?: number; } export default RectangleObject;