@shapediver/sdk.sdtf-core
Version:
Base implementation for all sdTF TypeScript SDKs
12 lines • 709 B
TypeScript
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