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

25 lines
590 B
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 IStepsProps extends IBaseProps {
2024-12-01 11:56:54 +00:00
/**
* @description
*/
current: number;
/**
* @description
*/
direction: 'horizontal' | 'vertical';
/**
* @description
*/
status: 'finish' | 'error';
items?: {
title: string;
description: string;
}[];
2024-11-10 07:01:22 +00:00
}
export declare const StepsDefaultProps: Partial<IStepsProps>;
2024-12-01 11:56:54 +00:00
export declare const StepsFunctionalProps: Partial<IStepsProps>;