An error object.

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

Properties

Properties

code: string

The error code.

detail?: string

Extra information about the error.

title: string

Description of the error.