UNPKG

@uiw/react-baidu-map-with-map

Version:

Baidu Map with-map Components for React.

9 lines (8 loc) 351 B
import React from 'react'; import { MapProps } from '@uiw/react-baidu-map-map'; export interface WithMapProps { BMap?: typeof BMap; container?: string | HTMLDivElement | null; map?: BMap.Map; } export default function withMap(Comp: React.ComponentClass<WithMapProps>): React.ForwardRefExoticComponent<MapProps & React.RefAttributes<any>>;