Rulvar API reference / @rulvar/executor / ChildResult
Interface: ChildResult
Defined in: packages/executor/src/child.ts:38
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
code | number | null | Process exit code; null when the child was terminated by a signal. | packages/executor/src/child.ts:42 |
reason? | ChildStopReason | - | packages/executor/src/child.ts:47 |
signal | Signals | null | The terminating signal, when any. | packages/executor/src/child.ts:44 |
stderr | string | - | packages/executor/src/child.ts:40 |
stdout | string | - | packages/executor/src/child.ts:39 |
stopped | boolean | True when the runner (not the child) ended it, with the reason why. | packages/executor/src/child.ts:46 |