|
@@ -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;
|
|
|
|
|
|
}
|
|
|
|