-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathstep.d.ts
32 lines (27 loc) · 823 Bytes
/
step.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent } from "../component";
export declare class Step extends AntdComponent {
/**
* description of the step, optional property
* @type any (string | slot)
*/
description: any;
/**
* icon of the step, optional property
* @type any (string | slot)
*/
icon: any;
/**
* to specify the status. It will be automatically set by current of Steps if not configured. Optional values are: wait process finish error
* @default 'wait'
* @type string
*/
status: "wait" | "process" | "finish" | "error";
/**
* title of the step
* @type any (string | slot)
*/
title: any;
}