Add dashboard pressure trend arrow

This commit is contained in:
2019-10-06 19:59:13 -04:00
parent d593c0095f
commit 7c062dbc04
13 changed files with 148 additions and 7 deletions

View File

@@ -0,0 +1,3 @@
export enum WeatherValueType {
Pressure = 'Pressure'
}

View File

@@ -1,4 +1,4 @@
export class WeatherValue {
bucket: string;
averageValue: number;
timestamp: string;
value: number;
}