add-marker.d.ts 222 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 import * as L from 'leaflet' declare module 'leaflet' { namespace Control { class AddMarker extends L.Control { } } namespace control { function addMarker(options): Control.AddMarker; } }