Files
archived-tauri-docs/docs/api/js/interfaces/shell.ChildProcess.md
2022-07-15 12:00:05 +02: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