Spaces:
Paused
Paused
File size: 315 Bytes
fb4d8fe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | export type GatewayServiceRuntime = {
status?: "running" | "stopped" | "unknown";
state?: string;
subState?: string;
pid?: number;
lastExitStatus?: number;
lastExitReason?: string;
lastRunResult?: string;
lastRunTime?: string;
detail?: string;
cachedLabel?: boolean;
missingUnit?: boolean;
};
|