@tnwx/kits
Version:
TNWX 微信系开发脚手架之工具集合
19 lines • 512 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const AxiosHttpKit_1 = require("./AxiosHttpKit");
/**
* @author Javen
* @copyright javendev@126.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