Interface MandeError<T>

Extended Error with the raw Response object.

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

Type Parameters

  • T = any

Hierarchy

  • Error
    • MandeError

Properties

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