headplane/app/types/Route.ts
2024-03-25 18:54:04 -04:00

14 lines
228 B
TypeScript

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