@wufengteam/wform
Version:
@wufengteam/wform
14 lines (13 loc) • 377 B
TypeScript
import type { FC } from 'react';
import type { Poi } from './libs/Map';
interface LocationMobileProps {
poi?: Poi;
onChange?: (poi?: Poi) => void;
locationRange?: 'current' | 'unlimit';
radius?: number;
onClose?: () => void;
onOk?: () => void;
isAMap: boolean;
}
declare const LocationMobile: FC<LocationMobileProps>;
export default LocationMobile;