UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

15 lines (14 loc) 194 B
/** * Address location * 地理位置 */ export type AddressLocation = { /** * Latitude, 纬度 */ lat: number; /** * Longitude, 经度 */ lng: number; };