浏览代码

Added missing name property to BufferAttribute's typings.

Mathew Schofield 6 年之前
父节点
当前提交
2007f8932f
共有 1 个文件被更改,包括 1 次插入0 次删除
  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;