@shapediver/sdk.sdtf-core
Version:
Base implementation for all sdTF TypeScript SDKs
11 lines (8 loc) • 479 B
text/typescript
import { ISdtfBaseComponent } from './ISdtfBaseComponent';
/** Represents a [sdTf](https://github.com/shapediver/sdTF/tree/development/specification/1.0) (Standard Data Transfer Format). */
export interface ISdtfAsset extends ISdtfBaseComponent {
/** Holds the positional index of the referenced file info object in the sdTF asset structure. */
fileInfo: number;
/** Additional custom properties are allowed. */
additionalProperties: Record<string, unknown>;
}