API Reference
ShellResult
Defined in: tools/builtin/builtin.types.ts:36
The outcome of running one shell command.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
exitCode | number | Process exit status; 0 conventionally means success. | tools/builtin/builtin.types.ts:42 |
stderr | string | Standard error captured from the command. | tools/builtin/builtin.types.ts:40 |
stdout | string | Standard output captured from the command. | tools/builtin/builtin.types.ts:38 |