| 128 | } |
| 129 | |
| 130 | export interface JustGageCustomSectors { |
| 131 | /** Whether lo/hi values are percentages (default: false, values are absolute) */ |
| 132 | percents?: boolean; |
| 133 | /** Array of color ranges - when value falls within a range, use that range's color */ |
| 134 | ranges?: Array<{ |
| 135 | /** Low value (inclusive) */ |
| 136 | lo: number; |
| 137 | /** High value (inclusive) */ |
| 138 | hi: number; |
| 139 | /** Color for this range (hex color string) */ |
| 140 | color: string; |
| 141 | }>; |
| 142 | } |
| 143 | |
| 144 | export interface JustGagePointerOptions { |
| 145 | /** Top length */ |
nothing calls this directly
no outgoing calls
no test coverage detected