소스 검색

Merge pull request #17000 from mrschofield/dev

Added missing name property to BufferAttribute's typings.
Mr.doob 6 년 전
부모
커밋
10397036be
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;