Skip to main content

shell.ChildProcess

Properties#

code#

code: null | number

Exit code of the process. null if the process was terminated by a signal on Unix.

Defined in#

shell.ts:46


signal#

signal: null | number

If the process was terminated by a signal, represents that signal.

Defined in#

shell.ts:48


stderr#

stderr: string

The data that the process wrote to stderr.

Defined in#

shell.ts:52


stdout#

stdout: string

The data that the process wrote to stdout.

Defined in#

shell.ts:50