UNPKG

rc-leaflet

Version:
13 lines (12 loc) 343 B
/// <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;