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