Separate historical from current

This commit is contained in:
2024-03-12 21:22:45 +00:00
parent 934e683f89
commit ec85be2096
8 changed files with 179 additions and 34 deletions

View File

@@ -1,10 +1,12 @@
import WindDirection from './wind-direction';
export default interface WeatherAggregates {
humidity: WeatherAggregate;
temperature: WeatherAggregate;
pressure: WeatherAggregate;
light: WeatherAggregate;
windSpeed: WeatherAggregate;
windDirectionAverage: number;
windDirectionAverage: WindDirection;
rainTotal: number;
}