export declare type Type = 'PH' | 'TURBIDITY' | 'WATERLINE' | 'NH3N' | 'CONDUCTIVITY'; export interface SewageChamber { id?: string; deviceIds: string[]; deviceNames?: string[]; type: string; minValue?: number; maxValue?: number; notification: string; enable: boolean; } export interface CuringChamber { id?: string; deviceIds: string[]; deviceNames?: string[]; type: string; minValue?: number; maxValue?: number; notification: string; enable: boolean; } export interface IGasContentMonitoringList { deviceName: string; alarmTimes: number; totalalarmTimes: number; data: IGasContentMonitoringData[]; } export interface IGasContentMonitoringData { value: number; time: number; unit: string; } export interface IGasContentMonitoringModal { deviceName: string; deviceId: string; monitorType: number; typeName: string; realValue: number; status?: number; unit: string; totalAlarmNum: number; totalWarningNum: number; alarmMsg?: string[]; } export interface CuringChamberList extends Array { } export interface SewageChamberList extends Array { }