UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

17 lines (16 loc) 894 B
import { type VertexBufferDeduceStride, type VertexBufferForEach, type VertexBufferGetDataType, type VertexBufferGetFloatData, type VertexBufferGetTypeByteLength } from "./buffer.pure.js"; type VertexBufferDeduceStrideType = typeof VertexBufferDeduceStride; type VertexBufferForEachType = typeof VertexBufferForEach; type VertexBufferGetDataTypeType = typeof VertexBufferGetDataType; type VertexBufferGetFloatDataType = typeof VertexBufferGetFloatData; type VertexBufferGetTypeByteLengthType = typeof VertexBufferGetTypeByteLength; declare module "./buffer.pure.js" { namespace VertexBuffer { let DeduceStride: VertexBufferDeduceStrideType; let ForEach: VertexBufferForEachType; let GetDataType: VertexBufferGetDataTypeType; let GetFloatData: VertexBufferGetFloatDataType; let GetTypeByteLength: VertexBufferGetTypeByteLengthType; } } export {};