Browse Source

Merge pull request #16448 from linbingquan/dev-fix

TypeScript: Fixed a mistake for WebGLAttributes.d.ts
Mr.doob 6 years ago
parent
commit
8ec5718630
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/renderers/webgl/WebGLAttributes.d.ts

+ 1 - 1
src/renderers/webgl/WebGLAttributes.d.ts

@@ -5,5 +5,5 @@ export class WebGLAttributes {
 
 	remove(attribute: any): void;
 
-	update(attribute: any, bufferType: Array): void;
+	update(attribute: any, bufferType: Array<any>): void;
 }