Update Tree.d.ts

This commit is contained in:
Tuğçe Küçükoğlu 2023-06-13 17:24:45 +03:00
parent 663765689c
commit 9669b7e250

View file

@ -110,14 +110,6 @@ export interface TreePassThroughOptions {
* Uses to pass attributes to the root's DOM element.
*/
root?: TreePassThroughOptionType;
/**
* Uses to pass attributes to the loading overlay's DOM element.
*/
loadingOverlay?: TreePassThroughOptionType;
/**
* Uses to pass attributes to the loading icon's DOM element.
*/
loadingIcon?: TreePassThroughOptionType;
/**
* Uses to pass attributes to the filter container's DOM element.
*/
@ -178,6 +170,14 @@ export interface TreePassThroughOptions {
* Uses to pass attributes to the subgroup's DOM element.
*/
subgroup?: TreePassThroughOptionType;
/**
* Uses to pass attributes to the loading overlay's DOM element.
*/
loadingOverlay?: TreePassThroughOptionType;
/**
* Uses to pass attributes to the loading icon's DOM element.
*/
loadingIcon?: TreePassThroughOptionType;
}
/**