import * as https from 'https'; type HttpMethod = 'get'|'GET'|'post'|'POST'|'put'|'PUT'|'patch'|'PATCH'|'delete'|'DELETE'; export default interface RequestOptions { url: string; method?: HttpMethod; baseUrl?: string; qs?: TParams; body?: TData; headers?: object; httpsAgent?: https.Agent; }