UNPKG

315 BTypeScriptView Raw
1import { GaugeProps } from './withGauge';
2export interface Point {
3 x: number;
4 y: number;
5}
6export interface Tick {
7 tickValue: number;
8 start: Point;
9 end: Point;
10}
11export { GaugeProps };
12declare const _default: (props: GaugeProps) => import("@antv/f-engine").JSX.Element;
13export default _default;