jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Progress/props.d.ts

48 lines
1.1 KiB
TypeScript
Raw Normal View History

2024-12-01 11:56:54 +00:00
import { IBaseProps } from '../_util/base';
2024-11-10 07:01:22 +00:00
/**
* @description 使
*/
export interface IProgressBarProps extends IBaseProps {
2024-12-01 11:56:54 +00:00
/**
* @description 0-100
* @default 0
*/
percent: number | string;
/**
* @description
* @default 'line'
*/
type: 'line' | 'circle';
/**
* @description px
*/
width: number;
/**
* @description px
*/
strokeWidth: number | string;
/**
* @description line
*/
status: 'success' | 'exception';
/**
* @description
*/
strokeColor: string;
/**
* @description
*/
trailColor: string;
/**
* @description 6deg
* @default 6
*/
speed: number;
/**
* @description
* @default true
*/
animation: boolean;
2024-11-10 07:01:22 +00:00
}
export declare const ProgressBarDefaultProps: Partial<IProgressBarProps>;