Files

25 lines
590 B
TypeScript
Raw Permalink Normal View History

2025-08-18 09:11:51 +08: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>;