瀏覽代碼

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

Dave Buchhofer 4 年之前
父節點
當前提交
4315516dc7
共有 1 個文件被更改,包括 1 次插入2 次删除
  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;