unstructured-client
Version:
<h3 align="center"> <img src="https://raw.githubusercontent.com/Unstructured-IO/unstructured/main/img/unstructured_logo.png" height="200" > </h3>
20 lines • 438 B
TypeScript
export declare class SDKError extends Error {
/**
* HTTP status code
*/
readonly statusCode: number;
/**
* HTTP content type
*/
readonly contentType: string;
/**
* HTTP body
*/
readonly body: string;
/**
* Raw response
*/
readonly rawResponse: Response;
constructor(message: string, rawResponse: Response, body?: string);
}
//# sourceMappingURL=sdkerror.d.ts.map