Explorar el Código

Update I3DMLoader.d.ts

Garrett Johnson hace 4 años
padre
commit
743e38798b
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  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;
 	
 }