mirage2d 1.2.55 → 1.2.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,5 +8,10 @@
8
8
  import { baseGraphicLayer } from "../../base/baseGraphicLayer";
9
9
  import { IGraphicLayerOption } from "../../base/baseOptionType";
10
10
  export declare class GraphicImageLayer extends baseGraphicLayer {
11
+ private defaultFillStyle;
11
12
  constructor(layerid: string, options?: IGraphicLayerOption);
13
+ private validateOptions;
14
+ private initializeDefaultStyle;
15
+ private initializeLayer;
16
+ private setupEventHandlers;
12
17
  }
@@ -4,9 +4,12 @@ export declare class TileLoadManager {
4
4
  private readonly MAX_CONCURRENT;
5
5
  private currentLoads;
6
6
  private loadQueue;
7
+ private destroyed;
8
+ private readonly MAX_QUEUE_LENGTH;
7
9
  createLoadFunction(): (tile: ImageTile, src: string) => void;
8
10
  private enqueueLoad;
9
11
  private processQueue;
10
12
  private executeLoad;
11
13
  private handleTimeout;
14
+ destroy(): void;
12
15
  }