export interface GeoInfo {
  country: string;
  region: string;
  eu: boolean;
  timezone: string;
  city: string;
  ll: [number, number];
}
