/// import { FetchMethod } from './fetch_method'; import { OutgoingHttpHeaders } from 'http'; export interface FetchOptions { accepts?: string[]; body?: object; contentType?: string; method?: FetchMethod; headers?: OutgoingHttpHeaders; }