UNPKG

mindee

Version:

Mindee Client Library for Node.js

19 lines (18 loc) 414 B
import { StringDict } from "../common"; /** * Explicit details on a problem. */ export declare class ErrorItem { /** * A JSON Pointer to the location of the body property. */ pointer?: string; /** * Explicit information on the issue. */ detail: string; /** * @param serverResponse JSON response from the server. */ constructor(serverResponse: StringDict); }