type Error = {
    code?: string;
    detail?: string;
    status?: number;
    title?: string;
}
Index
code?: string

A unique internal error code identifying the error type.

detail?: string

Additional details about the error.

status?: number

The HTTP status code associated with this error.

title?: string

A short, human-readable description of what went wrong.