Files
pulsenode/lib/types/service-result.ts
T

13 lines
251 B
TypeScript
Raw Normal View History

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