export interface TreeItem { id: number; parentId: number; name: string; tooltip: string; action: string; openWith: string; formName: string; jsonParams: string; faIconName: string; children?: TreeItem[]; }