@signumjs/http
Version:
SignumJS Generic Http Module
18 lines • 1.16 kB
JavaScript
;
/**
* The Http Module is a thin wrapper around the isomorhpic Http Implementation [axios](https://github.com/axios/axios)
* It mainly unifies responses such that its use is consistent
*
* @module http
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpError = exports.HttpMockBuilder = exports.HttpResponse = exports.HttpClientFactory = void 0;
const httpResponse_1 = require("./httpResponse");
Object.defineProperty(exports, "HttpResponse", { enumerable: true, get: function () { return httpResponse_1.HttpResponse; } });
const httpError_1 = require("./httpError");
Object.defineProperty(exports, "HttpError", { enumerable: true, get: function () { return httpError_1.HttpError; } });
const httpMockBuilder_1 = require("./httpMockBuilder");
Object.defineProperty(exports, "HttpMockBuilder", { enumerable: true, get: function () { return httpMockBuilder_1.HttpMockBuilder; } });
const httpClientFactory_1 = require("./httpClientFactory");
Object.defineProperty(exports, "HttpClientFactory", { enumerable: true, get: function () { return httpClientFactory_1.HttpClientFactory; } });
//# sourceMappingURL=index.js.map