/** * Routing table. * @category Interfaces */ export interface RoutingTable { id: number; name: string; } /** * Routing table options * @category Interfaces */ export interface RoutingTableOptions { id?: number; name?: string; }