index.d.ts 237 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1
import * as React from "react";
2
export interface GaugeProps {
陈帅's avatar
陈帅 committed
3
  title: React.ReactNode;
4 5 6 7 8 9 10
  color?: string;
  height: number;
  bgColor?: number;
  percent: number;
}

export default class Gauge extends React.Component<GaugeProps, any> {}