Explorar o código

Update PNTSLoader.d.ts

Garrett Johnson %!s(int64=4) %!d(string=hai) anos
pai
achega
a23fbb3eea
Modificáronse 1 ficheiros con 8 adicións e 1 borrados
  1. 8 1
      src/three/PNTSLoader.d.ts

+ 8 - 1
src/three/PNTSLoader.d.ts

@@ -1,9 +1,16 @@
 import { PNTSBaseResult } from '../base/PNTSLoaderBase';
+import { FeatureTable } from '../utilities/FeatureTable';
 import { Points } from 'three';
 
+interface PNTSScene extends Point {
+
+	featureTable : FeatureTable;
+	
+}
+
 export interface PNTSResult extends PNTSBaseResult {
 
-	scene: Points;
+	scene : PNTSScene;
 
 }