Skip to content

Commit

Permalink
fix(forecast): fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzah committed Sep 15, 2021
1 parent 493a2ba commit c983b30
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/spices/forecast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,13 @@ export interface ForecastResult {
latitude: number;
longitude: number;
timezone: string;
currenly: any;
minutely?: {
currently: Omit<ForecastHourlyData, 'precipType'> & {
nearestStormDistance: number;
nearestStormBearing: number;
precipIntensity: number;
precipProbability: number;
};
minutely: {
summary: string;
icon: ForecastIcon;
data: ForecastMinutelyData[];
Expand Down

0 comments on commit c983b30

Please sign in to comment.