UNPKG

@shapediver/sdk.sdtf-core

Version:
10 lines 635 B
import { ISdtfDataItem } from '../../structure/components/ISdtfDataItem'; import { ISdtfBaseReadableComponent, SdtfReadableBase } from './ISdtfBaseReadableComponent'; import { ISdtfReadableAttributes } from './ISdtfReadableAttributes'; import { ISdtfReadableTypeHint } from './ISdtfReadableTypeHint'; export interface ISdtfReadableDataItem extends ISdtfBaseReadableComponent, Omit<SdtfReadableBase<ISdtfDataItem>, 'accessor' | 'attributes' | 'typeHint' | 'value'> { attributes?: ISdtfReadableAttributes; typeHint?: ISdtfReadableTypeHint; getContent(): Promise<unknown>; } //# sourceMappingURL=ISdtfReadableDataItem.d.ts.map