rc-leaflet
Version:
React Map Components of Leaflet
12 lines (11 loc) • 314 B
TypeScript
/// <reference types="react" />
import L from 'leaflet';
export declare type ContextType = Readonly<{
instance: L.Layer;
icon: L.Icon | L.DivIcon;
}>;
declare const Context: import("react").Context<Readonly<{
instance: L.Layer;
icon: L.Icon<L.IconOptions> | L.DivIcon;
}>>;
export default Context;