Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-12-07 19:50:13 -08:00
commit 57e96c64bf
3 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@ export type TreeNodeId = string | number;
export interface TreeNode {
id: TreeNodeId;
text: string;
text: any;
icon?: typeof import("svelte").SvelteComponent;
disabled?: boolean;
expanded?: boolean;