export interface Deployment {
    readonly id: number;
    readonly image: string;
    readonly createdAt: Date;
    readonly supersededAt: Date | null;
}
export type RoutingId = string;
export interface NodeConfig {
    readonly image: string;
    readonly cpuMilli: number;
    readonly memoryMb: number;
    readonly storageMb: number;
}
