浏览代码

Update I3DMLoader.d.ts

Garrett Johnson 4 年之前
父节点
当前提交
743e38798b
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      src/three/I3DMLoader.d.ts

+ 3 - 2
src/three/I3DMLoader.d.ts

@@ -1,10 +1,11 @@
 import { I3DMBaseResult } from '../base/I3DMLoaderBase';
+import { FeatureTable, BatchTable } from '../utilities/FeatureTable';
 import { GLTF } from 'three/examples/jsm/loaders/GLTFLoader';
 
 interface I3DMScene extends Group {
 
-	batchTable : Object;
-	featureTable : Object;
+	batchTable : BatchTable;
+	featureTable : FeatureTable;
 	
 }