Type Alias Error

An error object.

type Error = {
    meta?: Meta;
    source?: unknown;
    status?: number;
    title: string;
    traceId?: string;
}
Index

Properties

meta?: Meta

Object containing meta data regarding an error. It does not necessarily contain all the properties.

source?: unknown
status?: number
title: string
traceId?: string