firefox support beta

This commit is contained in:
skidoodle 2025-03-15 19:41:30 +01:00
parent 862be4f924
commit 971a980def
Signed by: albert
SSH key fingerprint: SHA256:Cu/S7e7NSLXxcxcBsxd0qtCy6TJiN24ptIdit5aQXyI
6 changed files with 29 additions and 11 deletions

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;
}