@tauri-apps/plugin-shell - v2.3.0
    Preparing search index...

    Interface ChildProcess<O>

    2.0.0

    interface ChildProcess<O extends IOPayload> {
        code: null | number;
        signal: null | number;
        stdout: O;
        stderr: O;
    }

    Type Parameters

    Index

    Properties

    code: null | number

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

    signal: null | number

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

    stdout: O

    The data that the process wrote to stdout.

    stderr: O

    The data that the process wrote to stderr.