import * as mmdb from 'maxmind'; import { ConnectionType as ConnType } from '../types'; export default class ConnectionType { readonly connectionType: ConnType; ipAddress?: string; network?: string; constructor(response: mmdb.ConnectionTypeResponse, ipAddress?: string, network?: string); }