From d612bb2ee1287ceccbdd4517ff995edf6816b727 Mon Sep 17 00:00:00 2001
From: Nicholas Sunderland
<46519157+nsunderland-cognite@users.noreply.github.com>
Date: Sat, 30 Mar 2019 05:14:08 +0100
Subject: [PATCH] [three] Fixed InstancedBufferAttribute definition (#34142)
---
types/three/three-core.d.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/types/three/three-core.d.ts b/types/three/three-core.d.ts
index d018d3241d..bbd5c6bc26 100755
--- a/types/three/three-core.d.ts
+++ b/types/three/three-core.d.ts
@@ -1477,7 +1477,7 @@ export namespace GeometryUtils {
* @see src/core/InstancedBufferAttribute.js
*/
export class InstancedBufferAttribute extends BufferAttribute {
- constructor(data: ArrayLike, itemSize: number, meshPerAttribute?: number);
+ constructor(array: ArrayLike, itemSize: number, normalized?: boolean, meshPerAttribute?: number);
meshPerAttribute: number;
}