fix HttpsProxyAgent typings
This commit is contained in:
parent
51705604c4
commit
dce1453732
|
@ -1,28 +1,3 @@
|
||||||
declare function escape(s: string): string;
|
declare function escape(s: string): string;
|
||||||
declare function unescape(s: string): string;
|
declare function unescape(s: string): string;
|
||||||
declare module 'duo_web_sdk';
|
declare module 'duo_web_sdk';
|
||||||
|
|
||||||
// From: https://github.com/TooTallNate/node-https-proxy-agent/issues/27
|
|
||||||
declare module 'https-proxy-agent' {
|
|
||||||
import * as https from 'https'
|
|
||||||
|
|
||||||
namespace HttpsProxyAgent {
|
|
||||||
interface HttpsProxyAgentOptions {
|
|
||||||
host: string
|
|
||||||
port: number
|
|
||||||
secureProxy?: boolean
|
|
||||||
headers?: {
|
|
||||||
[key: string]: string
|
|
||||||
}
|
|
||||||
[key: string]: any
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// HttpsProxyAgent doesnt *actually* extend https.Agent, but for my purposes I want it to pretend that it does
|
|
||||||
class HttpsProxyAgent extends https.Agent {
|
|
||||||
constructor(opts: string)
|
|
||||||
constructor(opts: HttpsProxyAgent.HttpsProxyAgentOptions)
|
|
||||||
}
|
|
||||||
|
|
||||||
export = HttpsProxyAgent
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue