@wufengteam/wform
Version:
@wufengteam/wform
12 lines (11 loc) • 313 B
TypeScript
import type { FC } from 'react';
import type { Poi } from './libs/Map';
interface LocationPCProps {
poi?: Poi;
onChange?: (poi?: Poi) => void;
locationRange?: 'current' | 'unlimit';
radius?: number;
isAMap?: boolean;
}
declare const LocationPC: FC<LocationPCProps>;
export default LocationPC;