2026-08-17 20:45:29 +02:00
|
|
|
import type { DockerContainerResult } from "./widget-result";
|
|
|
|
|
|
|
|
|
|
export interface ServiceStat {
|
|
|
|
|
label: string;
|
|
|
|
|
value: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface ServiceWidgetResult {
|
|
|
|
|
docker: DockerContainerResult;
|
|
|
|
|
stats: ServiceStat[];
|
|
|
|
|
statError?: string;
|
|
|
|
|
}
|