fedicrawl/application/src/Storage/Definitions/Geo.ts

14 wiersze
238 B
TypeScript
Czysty Zwykły widok Historia

2022-09-14 19:16:04 +00:00
interface Geo {
2022-09-18 11:32:25 +00:00
cityName?: string
continentName?: string
countryIsoCode?: string
countryName?: string
latitude: number
longitude: number
location?: string
regionIsoCode?: string
regionName?: string
2022-09-14 19:16:04 +00:00
}
export default Geo