UNPKG

snowflake-sdk

Version:
15 lines (14 loc) 512 B
import * as http from 'http'; import * as https from 'https'; import { WIP_ConnectionConfig } from '../connection/types'; export { NodeHttpClient, isBypassProxy } from './node_untyped'; /** * Work In Progress TypeScript migration for http/node_untyped.js */ export declare function getProxyAgent(config: { proxyOptions: ReturnType<WIP_ConnectionConfig['getProxy']>; connectionConfig: WIP_ConnectionConfig; parsedUrl: URL; destination: string; mockAgent?: http.Agent | https.Agent; }): any;