almost there

This commit is contained in:
skidoodle 2025-03-15 17:22:38 +01:00
parent 38e6f714cb
commit 5eb326de05
Signed by: albert
SSH key fingerprint: SHA256:Cu/S7e7NSLXxcxcBsxd0qtCy6TJiN24ptIdit5aQXyI
273 changed files with 230 additions and 261 deletions

View file

@ -1,10 +1,15 @@
export interface ServerData {
origin: string
ip: string;
hostname: string | null;
country: string | null;
city: string | null;
org: string;
isLocal?: boolean;
isBrowserResource?: boolean;
origin: string
ip: string
hostname: string | null
country: string | null
city: string | null
org: string
isLocal?: boolean
isBrowserResource?: boolean
}
export interface DNSEntry {
type: number
data: string
}