UNPKG

@shapediver/sdk.sdtf-core

Version:
7 lines 347 B
import { ISdtfBaseComponent } from '../../structure/components/ISdtfBaseComponent'; export type SdtfReadableBase<T extends ISdtfBaseComponent> = Omit<T, 'toJson'>; export interface ISdtfBaseReadableComponent { readonly componentId: string; toDataObject(): Record<string, unknown>; } //# sourceMappingURL=ISdtfBaseReadableComponent.d.ts.map