Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

13 lines
501 B
TypeScript

export interface GaugeClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the arc displaying the value. */
valueArc: string;
/** Styles applied to the arc displaying the range of available values. */
referenceArc: string;
/** Styles applied to the value text. */
valueText: string;
}
export type GaugeClassKey = keyof GaugeClasses;
export declare function getGaugeUtilityClass(slot: string): string;
export declare const gaugeClasses: GaugeClasses;