Update frontend dashboard and health service

This commit is contained in:
2025-11-28 02:23:41 +01:00
parent 6b73ae043d
commit e26b426c2e
15 changed files with 2309 additions and 662 deletions

View File

@@ -0,0 +1,7 @@
export interface PollState<T> {
data: T | null;
error: string | null;
loading: boolean;
lastUpdated: string | null;
attemptedUrl: string;
}