소스 검색

Add typescript def

Garrett Johnson 5 년 전
부모
커밋
ef6b992b9c
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      src/base/B3DMLoaderBase.d.ts

+ 4 - 2
src/base/B3DMLoaderBase.d.ts

@@ -1,8 +1,10 @@
+import { FeatureTable, BatchTable } from '../utilities/FeatureTable';
+
 export interface B3DMBaseResult {
 
 	version : String;
-	featureTable: Object;
-	batchTable : Object;
+	featureTable: FeatureTable;
+	batchTable : BatchTable;
 	glbBytes : Uint8Array;
 
 }