blob: b3889d201e56c835eb5d4fbe447f8f1fc95e8e63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "Agent", {
enumerable: true,
get: function () {
return _Agent.default;
}
});
Object.defineProperty(exports, "HttpProxyAgent", {
enumerable: true,
get: function () {
return _HttpProxyAgent.default;
}
});
Object.defineProperty(exports, "HttpsProxyAgent", {
enumerable: true,
get: function () {
return _HttpsProxyAgent.default;
}
});
var _Agent = _interopRequireDefault(require("./Agent"));
var _HttpProxyAgent = _interopRequireDefault(require("./HttpProxyAgent"));
var _HttpsProxyAgent = _interopRequireDefault(require("./HttpsProxyAgent"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
//# sourceMappingURL=index.js.map
|