Interface: BinaryExecResult
Defined in: src/batteries/media/contracts.ts:79
The settled result of a BinaryExecutor.exec call.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
exitCode | number | The process exit code (or -1 when the process failed to start). | src/batteries/media/contracts.ts:81 |
failed | boolean | true when the invocation failed (non-zero exit, spawn failure, timeout, abort). | src/batteries/media/contracts.ts:87 |
stderr | string | Captured standard error. | src/batteries/media/contracts.ts:85 |
stdout | string | Captured standard output. | src/batteries/media/contracts.ts:83 |