Skip to content

Commit

Permalink
fix: fix eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
usefulthink committed Dec 6, 2023
1 parent 15a7cbe commit 8e6cb63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/algorithms/supercluster.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import { SuperClusterAlgorithm } from "./supercluster";
import { initialize } from "@googlemaps/jest-mocks";
import { Marker } from "../marker-utils";
import { ClusterFeature, PointFeature } from "supercluster";
import { ClusterFeature } from "supercluster";

initialize();
const markerClasses = [
Expand Down
3 changes: 2 additions & 1 deletion src/overlay-view-safe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

// eslint-disable-next-line @typescript-eslint/no-empty-interface
// eslint-disable-next-line @typescript-eslint/no-empty-interface, @typescript-eslint/no-unsafe-declaration-merging
export interface OverlayViewSafe extends google.maps.OverlayView {}

/**
Expand All @@ -36,6 +36,7 @@ function extend(type1: any, type2: any): void {
/**
* @ignore
*/
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
export class OverlayViewSafe {
constructor() {
// MarkerClusterer implements google.maps.OverlayView interface. We use the
Expand Down

0 comments on commit 8e6cb63

Please sign in to comment.