Browse Source

Merge pull request #17000 from mrschofield/dev

Added missing name property to BufferAttribute's typings.
Mr.doob 6 năm trước cách đây
mục cha
commit
10397036be
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  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;