@tplc/business
Version:
18 lines (17 loc) • 422 B
TypeScript
export interface UserLocation {
addressInfo: string
cityId: string
areaId: string
provinceId: string
cityName: string
haveNotCityId: string
haveNotCityName: string
haveNotAddressInfo: string
haveNotTip: string
showName: string
openFlag: boolean
}
export declare const getUserLocation: (data?: {
userLongitude: string
userLatitude: string
}) => Promise<import('../action').IResData<UserLocation>>