Browse Source

Add typescript def

Garrett Johnson 5 years ago
parent
commit
ef6b992b9c
1 changed files with 4 additions and 2 deletions
  1. 4 2
      src/base/B3DMLoaderBase.d.ts

+ 4 - 2
src/base/B3DMLoaderBase.d.ts

@@ -1,8 +1,10 @@
+import { FeatureTable, BatchTable } from '../utilities/FeatureTable';
+
 export interface B3DMBaseResult {
 
 	version : String;
-	featureTable: Object;
-	batchTable : Object;
+	featureTable: FeatureTable;
+	batchTable : BatchTable;
 	glbBytes : Uint8Array;
 
 }