import type { DockerContainerResult } from "./widget-result"; export interface ServiceStat { label: string; value: string; } export interface ServiceWidgetResult { docker: DockerContainerResult; stats: ServiceStat[]; detail?: string[]; statError?: string; }