@tnhb/kits
Version:
TNHB Kits 请求工具 SDK By blak-kong
20 lines • 566 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpKit = void 0;
const AxiosHttpKit_1 = require("./AxiosHttpKit");
/**
* @author blak-kong
* @copyright blak-kong@foxmail.com
* @description 封装网络请求工具
*/
class HttpKit {
static get getHttpDelegate() {
return this.delegate;
}
static set setHttpDelegate(delegate) {
this.delegate = delegate;
}
}
exports.HttpKit = HttpKit;
HttpKit.delegate = new AxiosHttpKit_1.AxiosHttpKit();
//# sourceMappingURL=HttpKit.js.map