Update TreeNode.d.ts

pull/4899/head
tugcekucukoglu 2023-11-28 12:15:37 +03:00
parent c552a6d965
commit 5b47783f81
1 changed files with 6 additions and 2 deletions

View File

@ -53,9 +53,9 @@ export interface TreeNode {
*/
leaf?: boolean;
/**
* Optional
* Specifies the node loading. Used in Tree and TreeTable.
*/
[key: string]: any;
loading?: boolean;
/**
* Icon to use in expanded state.
*/
@ -64,4 +64,8 @@ export interface TreeNode {
* Icon to use in collapsed state.
*/
collapsedIcon?: string;
/**
* Optional
*/
[key: string]: any;
}