MCPcopy
hub / github.com/openclaw/clawsweeper / CodexProcessResult

Interface CodexProcessResult

src/codex-process.ts:14–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12export { codexProcessCommand, codexSpawnInvocation } from "./codex-spawn.js";
13
14export interface CodexProcessResult {
15 status: number | null;
16 signal: NodeJS.Signals | null;
17 error?: Error;
18 stdout: string;
19 stderr: string;
20}
21
22interface SerializedCodexProcessResult {
23 status: number | null;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected