@shapediver/sdk.sdtf-v1
Version:
Official sdTF SDK for TypeScript
11 lines • 624 B
TypeScript
import { ISdtfWriteableAsset, ISdtfWriteableAttributes, ISdtfWriteableDataItem } from '@shapediver/sdk.sdtf-core';
export interface ISdtfGrasshopperStructure {
branches: ISdtfWriteableDataItem[][];
paths: number[][];
}
export interface ISdtfGrasshopperSdtfBuilder {
addChunkForListData(parameterId: string, list: ISdtfWriteableDataItem[], chunkAttributes?: ISdtfWriteableAttributes): void;
addChunkForTreeData(parameterId: string, tree: ISdtfGrasshopperStructure, chunkAttributes?: ISdtfWriteableAttributes): void;
build(): ISdtfWriteableAsset;
}
//# sourceMappingURL=ISdtfGrasshopperSdtfBuilder.d.ts.map