Skip to content
1 min read · 103 words

Interface: BinaryExecResult

Defined in: src/batteries/media/contracts.ts:79

The settled result of a BinaryExecutor.exec call.

Properties

PropertyTypeDescriptionDefined in
exitCodenumberThe process exit code (or -1 when the process failed to start).src/batteries/media/contracts.ts:81
failedbooleantrue when the invocation failed (non-zero exit, spawn failure, timeout, abort).src/batteries/media/contracts.ts:87
stderrstringCaptured standard error.src/batteries/media/contracts.ts:85
stdoutstringCaptured standard output.src/batteries/media/contracts.ts:83