提交
This commit is contained in:
24
甲情_甲意/miniprogram/node_modules/antd-mini/es/Steps/props.d.ts
generated
vendored
Normal file
24
甲情_甲意/miniprogram/node_modules/antd-mini/es/Steps/props.d.ts
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
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>;
|
Reference in New Issue
Block a user