@wufengteam/wform
Version:
@wufengteam/wform
14 lines (13 loc) • 412 B
TypeScript
import type { FC, PropsWithChildren } from 'react';
import type { Poi } from './libs/Map';
interface BMapContainerProps {
className?: string;
zoom?: number;
searchValue?: string;
setPoiList?: (poiList: any[]) => void;
currentPoi?: Poi;
renderType?: string;
customEngineApi?: any;
}
declare const BMapContainer: FC<PropsWithChildren<BMapContainerProps>>;
export default BMapContainer;