UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

16 lines (15 loc) 398 B
import type { FC } from 'react'; import type { Poi } from './libs/Map'; interface LocationResultProps { poi: Poi; onDelete?: () => void; readOnly?: boolean; showMap?: boolean; showLngLat?: boolean; isAMap: boolean; renderType: string; customEngineApi: any; activeKey?: any; } declare const LocationResult: FC<LocationResultProps>; export default LocationResult;