Add PollutantType enum and update AQI-related entities and services to use it

This commit is contained in:
faris Aljohari
2025-06-11 00:28:00 -06:00
parent c86be27576
commit 2cb77504ca
5 changed files with 72 additions and 67 deletions

View File

@ -0,0 +1,8 @@
export enum PollutantType {
AQI = 'aqi',
PM25 = 'pm25',
PM10 = 'pm10',
VOC = 'voc',
CO2 = 'co2',
CH2O = 'ch2o',
}