UNPKG

346 BTypeScriptView Raw
1import type { LeafletEventHandlerFnMap, Map as LeafletMap } from 'leaflet';
2export declare function useMap(): LeafletMap;
3export declare function useMapEvent<T extends keyof LeafletEventHandlerFnMap>(type: T, handler: LeafletEventHandlerFnMap[T]): LeafletMap;
4export declare function useMapEvents(handlers: LeafletEventHandlerFnMap): LeafletMap;