export interface Location { /** * 经度 */ lon: string; /** * 纬度 */ lat: string; /** * 行政编码 */ adCode?: string; /** * 行政编码 */ zipcode?: string; /** * 省份 */ province?: string; /** * 城市 */ city?: string; /** * 城市区号 */ cityCode?: string; /** * 区域 */ area?: string; /** * 详细地址 */ address?: string; /** * 街道 */ street?: string; } /** * 获取当前的地理位置 * */ declare function getLocation(): Promise; export default getLocation;