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