edgeport - v1.0.3
    Preparing search index...

    Interface ChannelExit

    The exit result of a channel's remote command.

    interface ChannelExit {
        code: number | null;
        signal: string | null;
    }
    Index
    code: number | null

    The command's exit code, or null if it exited via a signal.

    signal: string | null

    The signal name that terminated the command, or null.