mindee
Version:
Mindee Client Library for Node.js
17 lines (16 loc) • 466 B
TypeScript
import { StringDict } from "../common";
export declare abstract class CommonResponse {
/**
* Raw text representation of the API's response.
*/
private readonly rawHttp;
/**
* @param serverResponse JSON response from the server.
*/
protected constructor(serverResponse: StringDict);
/**
* Raw HTTP request sent from server, as a JSON-like structure
* @returns The HTTP request
*/
getRawHttp(): StringDict;
}