UNPKG
@allgemein/http
Version:
latest (1.4.1)
1.4.1
1.3.1
1.3.0
1.2.0
1.1.0
Library for http request backend abstraction.
github.com/allgemein-node/http
allgemein-node/http
@allgemein/http
/
libs
/
http
/
IHttpOptions.d.ts
9 lines
(8 loc)
•
232 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
*
as
https
from
'https'
;
export
interface
IHttpOptions
extends
https.
RequestOptions
{
proxy
?:
string
;
proxyHeaders
?:
any
;
retry
?:
number
;
responseType
?:
'string'
|
'buffer'
|
'json'
;
passBody
?:
boolean
; }