Refactor #3832 Refactor #3833 - For OrganizationChart

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-07 09:49:35 +03:00
parent 1646da534e
commit 7a5860f97b
4 changed files with 26 additions and 5 deletions

View file

@ -104,6 +104,16 @@ export interface OrganizationChartSlots {
* @todo
*/
[key: string]: (node: any) => VNode[];
/**
* Custom toggler icon template.
* @param {Object} scope - togglericon slot's params.
*/
togglericon(scope: {
/**
* Curent state of the node
*/
expanded: boolean;
}): VNode[];
}
/**