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

25 lines
590 B
TypeScript
Raw Normal View History

2024-11-15 03:51:28 +00:00
import { IBaseProps } from '../_util/base';
/**
* @description
*/
export interface IStepsProps extends IBaseProps {
/**
* @description
*/
current: number;
/**
* @description
*/
direction: 'horizontal' | 'vertical';
/**
* @description
*/
status: 'finish' | 'error';
items?: {
title: string;
description: string;
}[];
}
export declare const StepsDefaultProps: Partial<IStepsProps>;
export declare const StepsFunctionalProps: Partial<IStepsProps>;