Main workflow / Run (ubuntu-latest, 5.6) (push) Failing after 0s
Main workflow / Run (ubuntu-latest, 7.0) (push) Failing after 0s
Main workflow / Run (ubuntu-latest, 7.1) (push) Failing after 0s
Main workflow / Run (ubuntu-latest, 7.2) (push) Failing after 0s
Main workflow / Run (ubuntu-latest, 7.3) (push) Failing after 0s
Main workflow / Run (macOS-latest, 5.6) (push) Canceled after 0s
Main workflow / Run (macOS-latest, 7.0) (push) Canceled after 0s
Main workflow / Run (macOS-latest, 7.1) (push) Canceled after 0s
Main workflow / Run (macOS-latest, 7.2) (push) Canceled after 0s
Main workflow / Run (macOS-latest, 7.3) (push) Canceled after 0s
Main workflow / Run (windows-latest, 5.6) (push) Canceled after 0s
Main workflow / Run (windows-latest, 7.0) (push) Canceled after 0s
Main workflow / Run (windows-latest, 7.1) (push) Canceled after 0s
Main workflow / Run (windows-latest, 7.2) (push) Canceled after 0s
Main workflow / Run (windows-latest, 7.3) (push) Canceled after 0s
23 lines
636 B
TypeScript
23 lines
636 B
TypeScript
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: HttpsProxyAgent.HttpsProxyAgentOptions | string)
|
|
}
|
|
|
|
export = HttpsProxyAgent
|
|
}
|