Type Alias ErrorItem

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

A unique code for the error.

detail?: string

Additional information about the error.

title: string

A human-readable description of the error.