Procházet zdrojové kódy

Fixed typescript definition of onPreprocessURL

Petter před 4 roky
rodič
revize
ce4af420d8
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/base/TilesRendererBase.d.ts

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

@@ -15,7 +15,7 @@ export class TilesRendererBase {
 
 	fetchOptions : Object;
 	/** function to preprocess the url for each individual tile */
-	onPreprocessURL : (uri: string | URL) => URL | string | null;
+	onPreprocessURL : ((uri: string | URL) => URL) | null;
 
 	lruCache : LRUCache;
 	parseQueue : PriorityQueue;