interface RoutingTableEntry {
    destinationAddress: number;
    nextHop: number;
    status: string;
}

Properties

destinationAddress: number
nextHop: number
status: string