NPM Build Utilities @ 0.1.3
    Preparing search index...

    Interface NodeCliErrorInternal

    An approximation of the error thrown by node run via npm, which I can't find the proper type for despite a ton of search keywords.

    0.1.0-alpha

    interface NodeCliError {
        cause?: unknown;
        code?: string;
        message?: string;
        name?: string;
        output?: (null | string)[];
        path?: string;
        pid?: number;
        signal?: unknown;
        stack?: string;
        status?: number;
        stderr?: string;
        stdout?: string;
    }

    Hierarchy

    Index

    Properties

    cause?: unknown
    code?: string
    message?: string
    name?: string
    output?: (null | string)[]
    path?: string
    pid?: number
    signal?: unknown
    stack?: string
    status?: number
    stderr?: string
    stdout?: string