UNPKG

@shapediver/sdk.sdtf-v1

Version:
15 lines 840 B
import { ISdtfReadableAccessor, ISdtfReadableAttributes, ISdtfReadableContentComponent, ISdtfReadableDataItem, ISdtfReadableTypeHint } from '@shapediver/sdk.sdtf-core'; import { ISdtfDataParser } from '../ISdtfDataParser'; import { SdtfBaseReadableComponent } from './SdtfBaseReadableComponent'; export declare class SdtfReadableDataItem extends SdtfBaseReadableComponent implements ISdtfReadableDataItem, ISdtfReadableContentComponent { private readonly dataParser; accessor?: ISdtfReadableAccessor; attributes?: ISdtfReadableAttributes; typeHint?: ISdtfReadableTypeHint; value?: unknown; additionalProperties: Record<string, unknown>; constructor(dataParser: ISdtfDataParser); toDataObject(): Record<string, unknown>; getContent(): Promise<unknown>; } //# sourceMappingURL=SdtfReadableDataItem.d.ts.map