@heroku/http-call
Version:
make http requests
15 lines (14 loc) • 556 B
TypeScript
/// <reference types="node" />
/// <reference types="node" />
export default class ProxyUtil {
static env: NodeJS.ProcessEnv;
static get httpProxy(): string | undefined;
static get httpsProxy(): string | undefined;
static get noProxy(): string | undefined;
static shouldDodgeProxy(host: string): boolean;
static usingProxy(host?: string): boolean;
static get sslCertDir(): Array<string>;
static get sslCertFile(): Array<string>;
static get certs(): Array<Buffer>;
static agent(https: boolean, host?: string): any;
}