UNPKG

openlayers-react

Version:
8 lines (7 loc) 252 B
import React from 'react'; import olMap from 'ol/Map'; export interface MapContextProps { maps: Map<string, olMap>; registerMap: (map: olMap, id: string) => void; } export declare const MapContext: React.Context<MapContextProps | null>;