Interface: CLIResult
Defined in: types.ts:152
Result object specifically for the CLI runner, capturing output streams and exit code.
Properties
exitCode
exitCode:
number
Defined in: types.ts:160
Final exit code intended for the process (0 for success, non-zero for errors)
stderr?
optionalstderr:string
Defined in: types.ts:157
Captured content written to stderr
stdout?
optionalstdout:string
Defined in: types.ts:154
Captured content written to stdout
