import * as mmdb from 'maxmind'; import { MaxMindRecord } from './records'; export interface CountryResponse extends mmdb.CountryResponse { maxmind?: MaxMindRecord; } export interface CityResponse extends mmdb.CityResponse { maxmind?: MaxMindRecord; } export interface WebServiceClientError { code: string; error: string; status?: number; url: string; } export interface Json { [key: string]: unknown; } export type ConnectionType = 'Cable/DSL' | 'Cellular' | 'Corporate' | 'Dialup' | 'Satellite';