Browse Source

[types] - remove type which snuck in to the cherry-pick of debug adjustments too soon!

Dave Buchhofer 4 years ago
parent
commit
4315516dc7
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/base/TilesRendererBase.d.ts

+ 1 - 2
src/base/TilesRendererBase.d.ts

@@ -1,10 +1,9 @@
 import { LRUCache } from '../utilities/LRUCache';
 import { PriorityQueue } from '../utilities/PriorityQueue';
-import { Tileset } from './Tileset';
 
 export class TilesRendererBase {
 
-	readonly rootTileset : Tileset | null;
+	readonly rootTileset : Object | null;
 	readonly root : Object | null;
 
 	errorTarget : Number;