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

24 lines
432 B
TypeScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
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>;