Garrett Johnson 5 лет назад
Родитель
Сommit
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;
 
 }