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

    Interface TerminatedPayload

    Payload for the Terminated command event.

    interface TerminatedPayload {
        code: number | null;
        signal: number | null;
    }
    Index

    Properties

    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.