Parcourir la source

Added missing name property to BufferAttribute's typings.

Mathew Schofield il y a 6 ans
Parent
commit
2007f8932f
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  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;