123456789101112131415161718192021222324 |
- import { IBaseProps } from '../_util/base';
- export interface IStepsProps extends IBaseProps {
-
- current: number;
-
- direction: 'horizontal' | 'vertical';
-
- status: 'finish' | 'error';
- items?: {
- title: string;
- description: string;
- }[];
- }
- export declare const StepsDefaultProps: Partial<IStepsProps>;
- export declare const StepsFunctionalProps: Partial<IStepsProps>;
|