Interface FetchError

interface FetchError {
    message: string;
    name: string;
    response?: ExtendedResponse;
    stack?: string;
    status?: StatusValues;
    statusText?: string;
}

Hierarchy

  • Error
    • FetchError

Properties

message: string
name: string
response?: ExtendedResponse
stack?: string
status?: StatusValues
statusText?: string