1
0
Fork 0
mirror of https://github.com/actions/toolkit synced 2025-05-09 00:22:56 +00:00

octokit client should follow proxy settings (#314)

This commit is contained in:
eric sciple 2020-01-18 14:28:37 -05:00 committed by GitHub
parent e69833ed16
commit ab5bd9d696
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 473 additions and 68 deletions

5
packages/github/__tests__/proxy.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
declare module 'proxy' {
import * as http from 'http'
function internal(): http.Server
export = internal
}