pilotwings/frontend/types.ts

13 lines
249 B
TypeScript

export interface Container {
id: number
name: string | null
image: string | null
labels: Record<string, string>
status: string
health: string
engine: string | null
owner: string | null
environment: string[]
logs: string | null
}