index.d.ts 270 Bytes 编辑Web IDE 1 2 3 4 5 6 7 8 9 10 import * as React from 'react'; export interface IMiniProgressProps { target: number; color?: string; strokeWidth?: number; percent?: number; style?: React.CSSProperties; } export default class MiniProgress extends React.Component<IMiniProgressProps, any> {}