Refactor #4351 - For Steps

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-30 17:29:26 +03:00
parent 1359cd0b15
commit 637b3b398c
2 changed files with 44 additions and 2 deletions

View file

@ -137,6 +137,18 @@ export interface StepsSlots {
* Menuitem instance
*/
item: MenuItem;
/**
* Label property of the menuitem
*/
label: string | ((...args: any) => string) | undefined;
/**
* Order of the menuitem
*/
index: number;
/**
* Binding properties of the menuitem
*/
props: (...args: any) => string;
}): VNode[];
}