@sap-cloud-sdk/core
Version:
SAP Cloud SDK for JavaScript core
15 lines • 380 B
TypeScript
/// <reference types="node" />
import * as http from 'http';
/**
* Interface for the http-agent within the Axios request config.
*/
export interface HttpAgentConfig {
httpAgent: http.Agent;
}
/**
* Interface for the https-agent within the Axios request config.
*/
export interface HttpsAgentConfig {
httpsAgent: http.Agent;
}
//# sourceMappingURL=agent-config.d.ts.map