jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/less/Steps/props.d.ts
2024-11-10 15:01:22 +08:00

24 lines
432 B
TypeScript

import { IBaseProps } from '../_base';
/**
* @description 步骤条,分步展示当前进展
*/
export interface IStepsProps extends IBaseProps {
/**
* @description 当前步骤
*/
current?: number;
/**
* @description 方向
*/
direction?: 'horizontal' | 'vertical';
/**
* @description 状态
*/
status?: 'finish' | 'error';
}
export declare const StepsDefaultProps: Partial<IStepsProps>;