UNPKG

@shapediver/sdk.sdtf-v1

Version:
14 lines (11 loc) 410 B
import { ISdtfReadableTypeHint, SdtfTypeHintName } from '@shapediver/sdk.sdtf-core'; import { SdtfBaseReadableComponent } from './SdtfBaseReadableComponent'; export class SdtfReadableTypeHint extends SdtfBaseReadableComponent implements ISdtfReadableTypeHint { additionalProperties: Record<string, unknown> = {}; constructor(public name: SdtfTypeHintName | string) { super(); } }