Skip to content

portapack


portapack / types / CLIResult

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?

optional stderr: string

Defined in: types.ts:157

Captured content written to stderr


stdout?

optional stdout: string

Defined in: types.ts:154

Captured content written to stdout

Released under the MIT License