index.d.ts 274 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import * as React from "react"; export interface MiniProgressProps { target: number; color?: string; strokeWidth?: number; percent?: number; style?: React.CSSProperties; } export default class MiniProgress extends React.Component< MiniProgressProps, any > {}