@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
16 lines • 321 B
JavaScript
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