@shapediver/sdk.sdtf-core
Version:
Base implementation for all sdTF TypeScript SDKs
14 lines (10 loc) • 465 B
text/typescript
import { ISdtfReadableAccessor } from './components/ISdtfReadableAccessor';
import { ISdtfReadableTypeHint } from './components/ISdtfReadableTypeHint';
export interface ISdtfReadableContentComponent {
/** Referenced accessor to binary data. */
accessor?: ISdtfReadableAccessor;
/** The type hint of the referenced accessor or value. */
typeHint?: ISdtfReadableTypeHint;
/** Embedded representation of the data item. */
value?: unknown;
}