rc-leaflet
Version:
React Map Components of Leaflet
13 lines (12 loc) • 343 B
TypeScript
/// <reference types="react" />
import L from 'leaflet';
import { ContextType as ThemeContextType } from '../Theme';
export declare type ContextType = Readonly<{
map: L.Map;
theme: ThemeContextType;
}>;
declare const Context: import("react").Context<Readonly<{
map: L.Map;
theme: ThemeContextType;
}>>;
export default Context;