CompletedProcess
Defined in: packages/pythonlib/src/subprocess.ts:30
Result of a completed process.
Properties
args
args:
string[]
Defined in: packages/pythonlib/src/subprocess.ts:32
The arguments used to launch the process
returncode
returncode:
number
Defined in: packages/pythonlib/src/subprocess.ts:34
Exit status of the process
stderr
stderr:
string|null
Defined in: packages/pythonlib/src/subprocess.ts:38
Captured stderr (if PIPE was used)
stdout
stdout:
string|null
Defined in: packages/pythonlib/src/subprocess.ts:36
Captured stdout (if PIPE was used)