Fixed #4760 - TieredMenu: New start and end templating

This commit is contained in:
tugcekucukoglu 2023-11-06 14:54:05 +03:00
parent 316423456a
commit 0b17131c02
3 changed files with 17 additions and 1 deletions

View file

@ -322,6 +322,14 @@ export interface TieredMenuSlots {
*/
class: any;
}): VNode[];
/**
* Custom start template.
*/
start(): VNode[];
/**
* Custom end template.
*/
end(): VNode[];
}
/**