UNPKG

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