UNPKG

@azure/cosmos

Version:
16 lines 331 B
import * as https from "node:https"; import * as 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