@devma/qloo
Version:
TypeScript SDK for the Qloo Insights API - Generate taste-based insights and recommendations
19 lines • 555 B
TypeScript
/** The base class for all HTTP error responses */
export declare class QlooError extends Error {
/** HTTP status code */
readonly statusCode: number;
/** HTTP body */
readonly body: string;
/** HTTP headers */
readonly headers: Headers;
/** HTTP content type */
readonly contentType: string;
/** Raw response */
readonly rawResponse: Response;
constructor(message: string, httpMeta: {
response: Response;
request: Request;
body: string;
});
}
//# sourceMappingURL=qlooerror.d.ts.map