mindee
Version:
Mindee Client Library for Node.js
14 lines (13 loc) • 408 B
TypeScript
import { ErrorDetails, ErrorItem, ErrorResponse } from "../../v2/parsing/index.js";
import { MindeeError } from "../../errors/index.js";
/**
* HTTP error returned by the API.
*/
export declare class MindeeHttpErrorV2 extends MindeeError implements ErrorDetails {
status: number;
detail: string;
title: string;
code: string;
errors: ErrorItem[];
constructor(error: ErrorResponse);
}