Garrett Johnson преди 5 години
родител
ревизия
b4a2db6b94
променени са 1 файла, в които са добавени 7 реда и са изтрити 1 реда
  1. 7 1
      src/three/I3DMLoader.d.ts

+ 7 - 1
src/three/I3DMLoader.d.ts

@@ -1,10 +1,16 @@
 import { I3DMBaseResult } from '../base/I3DMLoaderBase';
 import { GLTF } from 'three/examples/jsm/loaders/GLTFLoader';
 
-export interface I3DMResult extends GLTF, I3DMBaseResult {
+interface I3DMScene extends Group {
 
 	batchTable : Object;
 	featureTable : Object;
+	
+}
+
+export interface I3DMResult extends GLTF, I3DMBaseResult {
+
+	scene : I3DMScene;
 
 }