fix: Fix linting issues

This commit is contained in:
2026-06-01 18:30:05 -05:00
parent d7b08e09af
commit 90c6aee83b
6 changed files with 23 additions and 23 deletions
+11
View File
@@ -0,0 +1,11 @@
export interface NetworkStatus {
state: string;
title: string;
message: string;
connectedSince?: number;
gatewayHost?: string;
}
export interface UIStatus extends NetworkStatus {
autoConnect?: boolean;
}