@tplc/business
Version:
19 lines (18 loc) • 442 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
addressId: string
}
export declare const getUserLocation: (data?: {
userLongitude: string
userLatitude: string
}) => Promise<import('../action').IResData<UserLocation>>