@shapediver/sdk.sdtf-v1
Version:
Official sdTF SDK for TypeScript
14 lines (11 loc) • 410 B
text/typescript
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();
}
}