import { SdtfTypeHintName } from "@shapediver/sdk.sdtf-v1"; import { ITreeNodeData } from "../tree-node/ITreeNodeData"; import { ISDTFAttributeData } from "./ISDTFAttributesData"; export interface ISDTFItemData extends ITreeNodeData { readonly attributes: { [key: string]: ISDTFAttributeData; }; readonly typeHint: SdtfTypeHintName | string; readonly value: any; clone(): ISDTFItemData; } //# sourceMappingURL=ISDTFItemData.d.ts.map