12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import { IBaseProps } from '../_util/base';
- export interface IProgressBarProps extends IBaseProps {
-
- percent: number | string;
-
- type: 'line' | 'circle';
-
- width: number;
-
- strokeWidth: number | string;
-
- status: 'success' | 'exception';
-
- strokeColor: string;
-
- trailColor: string;
-
- speed: number;
- }
- export declare const ProgressBarDefaultProps: Partial<IProgressBarProps>;
- export declare const ProgressBarFunctionalProps: Partial<IProgressBarProps>;
|