pilotwings/frontend/types.ts

13 lines
249 B
TypeScript
Raw Normal View History

2024-11-03 22:10:21 +00:00
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
2024-11-03 22:10:21 +00:00
environment: string[]
logs: string | null
2024-11-03 22:10:21 +00:00
}