UNPKG

@pansy/react-mapbox-gl

Version:

🌍 基于 Mapbox GL 封装的 React 组件库

7 lines (6 loc) 206 B
/// <reference types="react" /> import type { MapboxMap } from './types'; export interface MapContextValue { map: MapboxMap; } export declare const MapContext: import("react").Context<MapContextValue>;