⚠️ Internal: This API is not publically exported by the package.
interface RoutingTable {
    table: {
        destinationAddress: number;
        nextHop: number;
        status: string;
    }[];
}

Properties

Properties

table: {
    destinationAddress: number;
    nextHop: number;
    status: string;
}[]

Type declaration

  • destinationAddress: number
  • nextHop: number
  • status: string