Files
headplane/app/types/Route.ts
T
2026-04-26 20:38:45 -04:00

14 lines
247 B
TypeScript

import type { Machine } from "./Machine";
export interface Route {
id: string;
node: Machine;
prefix: string;
advertised: boolean;
enabled: boolean;
isPrimary: boolean;
createdAt: string;
updatedAt: string;
deletedAt: string;
}