gauge.d.ts 330 B

1234567891011
  1. import { CompositionComponent as CC } from '../runtime';
  2. import { GaugeMark } from '../spec';
  3. export type GaugeData = {
  4. target?: number;
  5. total?: number;
  6. percent?: number;
  7. name?: string;
  8. thresholds?: number[];
  9. };
  10. export type GaugeOptions = Omit<GaugeMark, 'type'>;
  11. export declare const Gauge: CC<GaugeOptions>;