UNPKG

@shapediver/sdk.sdtf-core

Version:
12 lines 709 B
import { ISdtfNode } from '../../structure/components/ISdtfNode'; import { ISdtfReadableAttributes } from './ISdtfReadableAttributes'; import { ISdtfBaseReadableComponent, SdtfReadableBase } from './ISdtfBaseReadableComponent'; import { ISdtfReadableDataItem } from './ISdtfReadableDataItem'; import { ISdtfReadableTypeHint } from './ISdtfReadableTypeHint'; export interface ISdtfReadableNode extends ISdtfBaseReadableComponent, Omit<SdtfReadableBase<ISdtfNode>, 'attributes' | 'items' | 'nodes' | 'typeHint'> { attributes?: ISdtfReadableAttributes; items: ISdtfReadableDataItem[]; nodes: ISdtfReadableNode[]; typeHint?: ISdtfReadableTypeHint; } //# sourceMappingURL=ISdtfReadableNode.d.ts.map