From 6d9f483c8c139aed9e463531300fec07fc284aee Mon Sep 17 00:00:00 2001 From: emmalivingstone Date: Tue, 14 Nov 2017 15:52:27 +0000 Subject: [PATCH] Fixing trailing whitespace --- types/leaflet-draw/index.d.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/types/leaflet-draw/index.d.ts b/types/leaflet-draw/index.d.ts index cd5d23973e..35d014b699 100644 --- a/types/leaflet-draw/index.d.ts +++ b/types/leaflet-draw/index.d.ts @@ -65,7 +65,7 @@ declare module 'leaflet' { * Default value: {} */ circle?: DrawOptions.CircleOptions | false; - + /** * Circle marker draw handler options. Set to false to disable handler. * @@ -207,7 +207,7 @@ declare module 'leaflet' { */ repeatMode?: boolean; } - + interface CircleMarkerOptions { /** * Whether to draw stroke around the circle marker. @@ -215,56 +215,56 @@ declare module 'leaflet' { * Default value: true */ stroke?: boolean; - + /** * The stroke color of the circle marker. * * Default value: '#3388ff' */ color?: string; - + /** * The stroke width in pixels of the circle marker. * * Default value: 4 */ weight?: number; - + /** * The stroke opacity of the circle marker. * * Default value: 0.5 */ opacity?: number; - + /** * Whether to fill the circle marker with color. * * Default value: true */ fill?: boolean; - + /** * The fill color of the circle marker. Defaults to the value of the color option. * * Default value: null */ fillColor?: string; - + /** * The opacity of the circle marker. * * Default value: 0.2 */ fillOpacity?: number; - + /** * Whether you can click the circle marker. * * Default value: true */ clickable?: boolean; - + /** * This should be a high number to ensure that you can draw over all other layers on the map. *