We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb81d3f commit 5735022Copy full SHA for 5735022
types/three/src/core/BufferGeometry.d.ts
@@ -47,7 +47,9 @@ export type NormalOrGLBufferAttributes = Record<
47
* @see {@link https://threejs.org/docs/index.html#api/en/core/BufferGeometry | Official Documentation}
48
* @see {@link https://github.com/mrdoob/three.js/blob/master/src/core/BufferGeometry.js | Source}
49
*/
50
-export class BufferGeometry<Attributes extends object = NormalBufferAttributes> extends EventDispatcher {
+export class BufferGeometry<
51
+ Attributes extends NormalOrGLBufferAttributes = NormalBufferAttributes,
52
+> extends EventDispatcher {
53
/**
54
* This creates a new {@link THREE.BufferGeometry | BufferGeometry} object.
55
0 commit comments