interface NodeInfo {
    addr: string;
    downlink: string;
    handshake_dns: boolean;
    location: {
        city: string;
        country: string;
        country_code: string;
        latitude: number;
        longitude: number;
    };
    moniker: string;
    peers: number;
    service_type: NodeVPNType;
    uplink: string;
    version: {
        commit: string;
        tag: string;
    };
}

Properties

addr: string
downlink: string
handshake_dns: boolean
location: {
    city: string;
    country: string;
    country_code: string;
    latitude: number;
    longitude: number;
}

Type declaration

  • city: string
  • country: string
  • country_code: string
  • latitude: number
  • longitude: number
moniker: string
peers: number
service_type: NodeVPNType
uplink: string
version: {
    commit: string;
    tag: string;
}

Type declaration

  • commit: string
  • tag: string

Generated using TypeDoc