api-def API Reference
    Preparing search index...

    Interface RequestError

    interface RequestError {
        attempts: number;
        cause?: unknown;
        code: string;
        isApiDefError: true;
        message: string;
        name: string;
        response: ApiResponse<any> | null | undefined;
        stack?: string;
    }

    Hierarchy

    • Error
      • RequestError
    Index
    attempts: number
    cause?: unknown

    The cause of the error.

    code: string
    isApiDefError: true
    message: string
    name: string
    response: ApiResponse<any> | null | undefined
    stack?: string