Interface ErrorProps

interface ErrorProps {
    details: any;
    message: string;
    response: any;
    responseBody: any;
    statusCode: number;
}

Properties

details: any
message: string
response: any
responseBody: any
statusCode: number