11 lines
196 B
TypeScript
11 lines
196 B
TypeScript
|
export interface Container {
|
||
|
id: number
|
||
|
name: string | null
|
||
|
image: string | null
|
||
|
labels: Record<string, string>
|
||
|
status: string
|
||
|
health: string
|
||
|
owner: string
|
||
|
environment: string[]
|
||
|
}
|