@idetik/core 0.7.5 → 0.7.6

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.
package/dist/index.d.ts CHANGED
@@ -191,10 +191,10 @@ declare class ChunkStore {
191
191
  getLowestResLOD(): number;
192
192
  loadChunkData(chunk: Chunk, signal: AbortSignal): Promise<void>;
193
193
  createView(policy: ImageSourcePolicy): ChunkStoreView;
194
- removeView(view: ChunkStoreView): void;
195
194
  get views(): ReadonlyArray<ChunkStoreView>;
196
195
  canDispose(): boolean;
197
196
  updateAndCollectChunkChanges(): Set<Chunk>;
197
+ private removeDisposedViews;
198
198
  private aggregateChunkViewStates;
199
199
  private validateXYScaleRatios;
200
200
  private getAndValidateTimeDimension;
@@ -536,8 +536,10 @@ declare class ChunkStoreView {
536
536
  private lastTCoord_?;
537
537
  private sourceMaxSquareDistance2D_;
538
538
  private readonly chunkViewStates_;
539
+ private isDisposed_;
539
540
  constructor(store: ChunkStore, policy: ImageSourcePolicy);
540
541
  get chunkViewStates(): ReadonlyMap<Chunk, ChunkViewState>;
542
+ get isDisposed(): boolean;
541
543
  getChunksAtTime(timeIndex: number): Chunk[];
542
544
  getTimeIndex(sliceCoords: SliceCoordinates): number;
543
545
  get lodCount(): number;