import { ListOfficialResourceCategoryVo } from '@easytwin/types'; export type OfficialResourceCategory = Omit & { id: string; parentId: string | undefined; children: OfficialResourceCategory[]; }; export type OfficialResourceCategoryItem = ListOfficialResourceCategoryVo & { displayName: string; children: OfficialResourceCategoryItem[]; unclassified: boolean; };