Interface FetchError

interface FetchError {
    code: string;
    errno: string;
    message: string;
    name: string;
    stack?: string;
    type: string;
}

Hierarchy (View Summary)

Properties

code: string
errno: string
message: string
name: string
stack?: string
type: string