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