RequestOptions

RequestOptions

Experimental Class

Class Overview

class RequestOptions {
  constructor({method, headers, body, url, search, withCredentials,
       responseType}?: RequestOptionsArgs)
  
  
  method : RequestMethod|string
  headers : Headers
  body : any
  url : string
  search : URLSearchParams
  withCredentials : boolean
  responseType : ResponseContentType
  merge(options?: RequestOptionsArgs) : RequestOptions
}

Class Description

Creates a request options object to be optionally provided when instantiating a Request.

This class is based on t