From 68186adc6dd28d6eec93bfb10cb693c69d33948c Mon Sep 17 00:00:00 2001 From: William Comartin Date: Wed, 6 Jan 2016 09:54:28 -0500 Subject: [PATCH] Leaflet-Fullscreen make Options optional --- leaflet-fullscreen/leaflet-fullscreen.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/leaflet-fullscreen/leaflet-fullscreen.d.ts b/leaflet-fullscreen/leaflet-fullscreen.d.ts index 8941a76e5..ea955bf41 100644 --- a/leaflet-fullscreen/leaflet-fullscreen.d.ts +++ b/leaflet-fullscreen/leaflet-fullscreen.d.ts @@ -12,11 +12,11 @@ declare module L { export interface Fullscreen extends L.Control {} export interface FullscreenOptions { - position: string, - title: string, - titleCancel: string, - forceSeparateButton: boolean, - forcePseudoFullscreen: boolean + position?: string, + title?: string, + titleCancel?: string, + forceSeparateButton?: boolean, + forcePseudoFullscreen?: boolean } }