Browse Source

Merge pull request #17000 from mrschofield/dev

Added missing name property to BufferAttribute's typings.
Mr.doob 6 years ago
parent
commit
10397036be
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/core/BufferAttribute.d.ts

+ 1 - 0
src/core/BufferAttribute.d.ts

@@ -6,6 +6,7 @@ export class BufferAttribute {
 	constructor( array: ArrayLike<number>, itemSize: number, normalized?: boolean ); // array parameter should be TypedArray.
 
 	uuid: string;
+	name: string;
 	array: ArrayLike<number>;
 	itemSize: number;
 	dynamic: boolean;