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

    Interface ChildProcess<O>

    2.0.0

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

    Type Parameters

    Index

    Properties

    code: number | null

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

    signal: number | null

    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.