fix(tree-view)!: remove expanded property from TreeNode

This commit is contained in:
metonym 2023-01-17 08:08:22 -08:00
commit cb1b31d526
4 changed files with 3 additions and 5 deletions

View file

@ -8,7 +8,6 @@ export interface TreeNode {
text: any;
icon?: typeof import("svelte").SvelteComponent;
disabled?: boolean;
expanded?: boolean;
children?: TreeNode[];
}