/** * GeoIpResponse */ interface GeoIpResponse { city: string; country: string; ip: string; loc: string; org: string; region: string; } export default GeoIpResponse;