index.d.ts 265 Bytes
Newer Older
陈小聪's avatar
陈小聪 committed
1
import React from 'react';
jim's avatar
jim committed
2
export interface IGaugeProps {
陈帅's avatar
陈帅 committed
3
  title: React.ReactNode;
4 5 6 7
  color?: string;
  height: number;
  bgColor?: number;
  percent: number;
jim's avatar
jim committed
8
  style?: React.CSSProperties;
9 10
}

jim's avatar
jim committed
11
export default class Gauge extends React.Component<IGaugeProps, any> {}