| 1234567891011 |
- import { CompositionComponent as CC } from '../runtime';
- import { GaugeMark } from '../spec';
- export type GaugeData = {
- target?: number;
- total?: number;
- percent?: number;
- name?: string;
- thresholds?: number[];
- };
- export type GaugeOptions = Omit<GaugeMark, 'type'>;
- export declare const Gauge: CC<GaugeOptions>;
|