diff --git a/types/three/three-core.d.ts b/types/three/three-core.d.ts index 67b3929cc2..4188efcf71 100644 --- a/types/three/three-core.d.ts +++ b/types/three/three-core.d.ts @@ -840,7 +840,9 @@ export class BufferGeometry extends EventDispatcher { name: string; type: string; index: BufferAttribute; - attributes: BufferAttribute|InterleavedBufferAttribute[]; + attributes: { + [name: string]: BufferAttribute|InterleavedBufferAttribute; + }; morphAttributes: any; groups: {start: number, count: number, materialIndex?: number}[]; boundingBox: Box3;