feat: add global weather support
All checks were successful
CI / Lint, typecheck and build (push) Successful in 9m54s
All checks were successful
CI / Lint, typecheck and build (push) Successful in 9m54s
This commit is contained in:
@@ -65,8 +65,12 @@ export interface DailyForecast {
|
||||
export interface WeatherForecast {
|
||||
latitude: number;
|
||||
longitude: number;
|
||||
region: WeatherRegion;
|
||||
timezone: string;
|
||||
hourly: HourlyForecast[];
|
||||
daily: DailyForecast[];
|
||||
sources: ForecastSource[];
|
||||
capabilities: WeatherCapabilities;
|
||||
unavailableReasons: string[];
|
||||
}
|
||||
import type { WeatherCapabilities, WeatherRegion } from "@/types/weather-region";
|
||||
|
||||
Reference in New Issue
Block a user