UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

16 lines (15 loc) 475 B
import type { FC } from 'react'; import type { ModalProps } from 'antd'; import type { Poi } from './libs/Map'; interface LocationModalProps extends Omit<ModalProps, 'onOk'> { initialPoi?: Poi; onOk?: (poi?: Poi) => void; locationRange?: 'current' | 'unlimit'; radius?: number; platform?: 'h5' | 'pc'; isAMap: boolean; renderType: any; customEngineApi: any; } declare const LocationModal: FC<LocationModalProps>; export default LocationModal;