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