Browse Source

Update I3DMLoaderBase.d.ts

Garrett Johnson 4 years ago
parent
commit
1cbbdb3edb
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/base/I3DMLoaderBase.d.ts

+ 3 - 3
src/base/I3DMLoaderBase.d.ts

@@ -1,6 +1,6 @@
 import { FeatureTable, BatchTable } from '../utilities/FeatureTable';
 
-export interface I3DMLoaderBaseResult {
+export interface I3DMBaseResult {
 
 	version : String;
 	featureTable: FeatureTable;
@@ -11,7 +11,7 @@ export interface I3DMLoaderBaseResult {
 
 export class I3DMLoaderBase {
 
-	load( url : string ) : Promise< I3DMLoaderBaseResult >;
-	parse( buffer : ArrayBuffer ) : Promise< I3DMLoaderBaseResult >;
+	load( url : string ) : Promise< I3DMBaseResult >;
+	parse( buffer : ArrayBuffer ) : Promise< I3DMBaseResult >;
 
 }