Type Alias StandardErrorItem

type StandardErrorItem = {
    code: string;
    detail?: string;
    meta?: unknown;
    title: string;
}
Index

Properties

Properties

code: string

The error code.

detail?: string

Extra information about the error.

meta?: unknown

Additional error object metadata.

title: string

Description of the error.