Add healthresponse type

This commit is contained in:
Matthias 2022-02-09 21:58:38 +01:00
parent 41fae1fbbd
commit 11dab073fe

View File

@ -218,6 +218,11 @@ export interface SysInfoResponse {
ram_pct: number;
}
export interface HealthResponse {
last_process: string;
last_process_ts: number;
}
export interface StatusResponse {
status: string;
}