import type { TypedArray, VertexFormat } from '@luma.gl/core'; /** Holds one geometry */ export type GeometryTable = { length: number; schema?: Record; attributes: { POSITION: TypedArray; NORMAL: TypedArray; TEXCOORD_0: TypedArray; [key: string]: TypedArray; }; indices?: Uint16Array | Uint32Array; topology?: 'point-list' | 'line-list' | 'line-strip' | 'triangle-list' | 'triangle-strip'; }; //# sourceMappingURL=geometry-table.d.ts.map