graphdb
Version:
Javascript client library supporting GraphDB and RDF4J REST API.
18 lines (17 loc) • 497 B
TypeScript
export = HttpUtils;
/**
* Utility class for HTTP-related helper methods.
* @class
* @author Boyan Tonchev
*/
declare class HttpUtils {
/**
* Utility method which serializes a single level json object to properly
* encoded string that can be used in a request.
*
* @private
* @param {Object} data object which holds request parameter key:value pairs.
* @return {string} provided object serialized and encoded to string.
*/
private static serialize;
}