소스 검색

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.
 	constructor( array: ArrayLike<number>, itemSize: number, normalized?: boolean ); // array parameter should be TypedArray.
 
 
 	uuid: string;
 	uuid: string;
+	name: string;
 	array: ArrayLike<number>;
 	array: ArrayLike<number>;
 	itemSize: number;
 	itemSize: number;
 	dynamic: boolean;
 	dynamic: boolean;