Skip to content

Commit

Permalink
Merge pull request #7189 from pjonsson/cesium-no-cast
Browse files Browse the repository at this point in the history
Cesium: stop casting void to any
  • Loading branch information
na9da authored Oct 22, 2024
2 parents cf6a761 + b067b76 commit eef4b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Models/Cesium.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ export default class Cesium extends GlobeOrMap {
this._eventHelper.add(
this.scene.globe.tileLoadProgressEvent,
(currentLoadQueueLength: number) =>
this._updateTilesLoadingCount(currentLoadQueueLength) as any
this._updateTilesLoadingCount(currentLoadQueueLength)
);

// Disable HDR lighting for better performance and to avoid changing imagery colors.
Expand Down

0 comments on commit eef4b5d

Please sign in to comment.