Mande
    Preparing search index...

    Interface MandeError<T>

    Extended Error with the raw Response object.

    interface MandeError<T = any> {
        body: T;
        cause?: unknown;
        message: string;
        name: string;
        response: Response;
        stack?: string;
    }

    Type Parameters

    • T = any

    Hierarchy

    • Error
      • MandeError
    Index

    Properties

    body: T
    cause?: unknown
    message: string
    name: string
    response: Response
    stack?: string