Add weather and map

This commit is contained in:
2024-08-22 22:42:02 +02:00
parent 331f8bd3ce
commit 324aa143d1
18 changed files with 905 additions and 59 deletions

View File

@@ -14,3 +14,22 @@ export interface Tag {
name: string
color: string
}
export interface OpenWeatherType {
weather: Array<{
description: string
}>
main: {
feels_like: number
}
name: string
}
export interface WeatherType {
city: string
weather: {
type: string
description: string
}
temp: number
}