Interface ErrorResponse

interface ErrorResponse {
    error: {
        message: string;
        status: number;
    };
}

Properties

Properties

error: {
    message: string;
    status: number;
}

Type declaration

  • message: string
  • status: number