import { ResourceUtilityMaterial } from '../ui/resources-block/components'; import { ResourceContentType, Specifications, UtilityComponentType } from '@cuby-ui/api'; export interface UpdateResource { newConsumable: ResourceUtilityMaterial; utilityComponentType: UtilityComponentType; resourceContentType: ResourceContentType; } export interface TreeStructCategoryElement { readonly id: string; readonly itemId: string; readonly name: string; readonly format: string; readonly specifications?: Specifications; readonly parameters?: Specifications; }