@shapediver/sdk.sdtf-core
Version:
Base implementation for all sdTF TypeScript SDKs
17 lines (15 loc) • 326 B
text/typescript
/**
* Wrapper around a buffer value.
*
* @example
* {
* id: "a64761bb-8c4e-4a4e-a0be-724925fa10cb",
* date: DataView { ... }
* }
*/
export interface ISdtfBufferValue {
/** Optional id that was specified in the accessor */
id?: string;
/** Holds the referenced buffer data */
data: DataView;
}