UNPKG

@allgemein/http

Version:

Library for http request backend abstraction.

9 lines (8 loc) 232 B
import * as https from 'https'; export interface IHttpOptions extends https.RequestOptions { proxy?: string; proxyHeaders?: any; retry?: number; responseType?: 'string' | 'buffer' | 'json'; passBody?: boolean; }