mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-07 23:30:43 +00:00
15 lines
320 B
TypeScript
15 lines
320 B
TypeScript
export type GatewayServiceRuntime = {
|
|
status?: string;
|
|
state?: string;
|
|
subState?: string;
|
|
pid?: number;
|
|
lastExitStatus?: number;
|
|
lastExitReason?: string;
|
|
lastRunResult?: string;
|
|
lastRunTime?: string;
|
|
detail?: string;
|
|
cachedLabel?: boolean;
|
|
missingUnit?: boolean;
|
|
missingSupervision?: boolean;
|
|
};
|