UNPKG

@azure/cosmos

Version:
16 lines 321 B
import https from "node:https"; import http from "node:http"; /** * @internal */ export const defaultHttpsAgent = new https.Agent({ keepAlive: true, minVersion: "TLSv1.2", }); /** * @internal */ export const defaultHttpAgent = new http.Agent({ keepAlive: true, }); //# sourceMappingURL=defaultAgent.js.map