firefox support beta

This commit is contained in:
2025-03-15 19:41:30 +01:00
parent 862be4f924
commit 971a980def
6 changed files with 29 additions and 11 deletions
+10
View File
@@ -13,3 +13,13 @@ export interface DNSEntry {
type: number
data: string
}
export interface FetchServerInfoRequest {
type: 'FETCH_SERVER_INFO';
hostname: string;
}
export interface FetchServerInfoResponse {
error?: string;
data?: ServerData;
}