@ac-essentials/misc-util
    Preparing search index...

    Interface INodeExecError

    Error object representing a failed execution of a child process using child_process.exec or child_process.execFile.

    interface INodeExecError {
        cause?: unknown;
        cmd: string;
        code: string | number;
        killed: boolean;
        message: string;
        name: string;
        signal: null | Signals;
        stack?: string;
        stderr: string | Buffer<ArrayBufferLike>;
        stdout: string | Buffer<ArrayBufferLike>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cause?: unknown
    cmd: string
    code: string | number
    killed: boolean
    message: string
    name: string
    signal: null | Signals
    stack?: string
    stderr: string | Buffer<ArrayBufferLike>
    stdout: string | Buffer<ArrayBufferLike>