hostinfo/utils/model.ts
2025-03-14 23:25:41 +01:00

10 lines
222 B
TypeScript

export interface ServerData {
origin: string
ip: string;
hostname: string | null;
country: string | null;
city: string | null;
org: string;
isLocal?: boolean;
isBrowserResource?: boolean;
}