mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-19 09:35:38 -05:00
More new UI
This commit is contained in:
7
WebDisplay/src/models/time-span.ts
Normal file
7
WebDisplay/src/models/time-span.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export enum TimeSpan {
|
||||
Last24Hours,
|
||||
Day,
|
||||
Custom
|
||||
}
|
||||
|
||||
export default TimeSpan;
|
||||
23
WebDisplay/src/models/weather/wind-direction-number.ts
Normal file
23
WebDisplay/src/models/weather/wind-direction-number.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
export enum WindDirectionNumber {
|
||||
None,
|
||||
North,
|
||||
East,
|
||||
South,
|
||||
West,
|
||||
NorthEast,
|
||||
SouthEast,
|
||||
SouthWest,
|
||||
NorthWest,
|
||||
NorthNorthEast,
|
||||
EastNorthEast,
|
||||
EastSouthEast,
|
||||
SouthSouthEast,
|
||||
SouthSouthWest,
|
||||
WestSouthWest,
|
||||
WestNorthWest,
|
||||
NorthNorthWest,
|
||||
Min = North,
|
||||
Max = NorthNorthWest
|
||||
}
|
||||
|
||||
export default WindDirectionNumber;
|
||||
Reference in New Issue
Block a user