UNPKG
@tbea_npm/sdk
Version:
latest (2.0.6)
2.0.6
2.0.5
2.0.2
WorkPlusFE JavaScript SDK.
@tbea_npm/sdk
/
types
/
location.d.ts
17 lines
(16 loc)
•
337 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export interface LocationRes {
/** 经度 */
longitude: number;
/** 纬度 */
latitude: number;
/** 具体地址信息 */
address
: string;
/** 城市 */
city: string;
/** 区 */
district: string;
/** 街道 */
street: string;
/** 地址名字 */
aoiName: string; }