MCPcopy
hub / github.com/toorshia/justgage / JustGageCustomSectors

Interface JustGageCustomSectors

src/types/index.d.ts:130–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

128}
129
130export 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
144export interface JustGagePointerOptions {
145 /** Top length */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected