From f24e32d8ad345ac7d89438ed75e7afe2451cde29 Mon Sep 17 00:00:00 2001 From: danielcollette Date: Thu, 31 May 2018 17:11:03 -0400 Subject: [PATCH 1/2] change markerStyle to any --- types/leaflet.locatecontrol/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/leaflet.locatecontrol/index.d.ts b/types/leaflet.locatecontrol/index.d.ts index 542461cec7..458f7232ca 100644 --- a/types/leaflet.locatecontrol/index.d.ts +++ b/types/leaflet.locatecontrol/index.d.ts @@ -27,7 +27,7 @@ declare module 'leaflet' { drawMarker?: boolean; markerClass?: any; circleStyle?: PathOptions; - markerStyle?: PathOptions; + markerStyle?: any; followCircleStyle?: PathOptions; followMarkerStyle?: PathOptions; icon?: string; From 16acbedbaa8530da2a054379dbb5e2e03e92f7a3 Mon Sep 17 00:00:00 2001 From: danielcollette Date: Fri, 8 Jun 2018 14:29:27 -0400 Subject: [PATCH 2/2] change to PathOptions or MarkerOptions --- types/leaflet.locatecontrol/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/leaflet.locatecontrol/index.d.ts b/types/leaflet.locatecontrol/index.d.ts index 458f7232ca..0afcd0d613 100644 --- a/types/leaflet.locatecontrol/index.d.ts +++ b/types/leaflet.locatecontrol/index.d.ts @@ -27,7 +27,7 @@ declare module 'leaflet' { drawMarker?: boolean; markerClass?: any; circleStyle?: PathOptions; - markerStyle?: any; + markerStyle?: PathOptions | MarkerOptions; followCircleStyle?: PathOptions; followMarkerStyle?: PathOptions; icon?: string;