UNPKG

@shapediver/sdk.sdtf-core

Version:
11 lines (8 loc) 479 B
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>; }