import Service from "#models/service"; export type ServiceStatus = 'unknown' | 'running' | 'stopped'; export type ServiceSlim = Pick & { status?: ServiceStatus };