UNPKG

@shapediver/sdk.sdtf-core

Version:
9 lines (7 loc) 257 B
/** Base for plain data object */ export interface ISdtfBaseComponent { /** Unique id of the component instance. */ readonly componentId: string; /** Returns the JSON representation of the component. */ toJson(): Record<string, unknown>; }