Files
archived-tauri-docs/docs/api/js/interfaces/shell.ChildProcess.md
tauri c2d6b60116 Update Docs (#423)
Co-authored-by: tauri-bot <tauri-bot@users.noreply.github.com>
2022-02-11 21:12:16 -03:00

1.0 KiB

@tauri-apps/api / shell / ChildProcess

Interface: ChildProcess

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:95


signal

signal: null | number

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

Defined in

shell.ts:97


stderr

stderr: string

The data that the process wrote to stderr.

Defined in

shell.ts:101


stdout

stdout: string

The data that the process wrote to stdout.

Defined in

shell.ts:99