RequestOptionsArgs

RequestOptionsArgs

Experimental Interface

Interface Overview

interface RequestOptionsArgs {
  url : string
  method : string|RequestMethod
  search : string|URLSearchParams
  headers : Headers
  body : any
  withCredentials : boolean
  responseType : ResponseContentType
}

Interface Description

Interface for options to construct a RequestOptions, based on RequestInit from the Fetch spec.

Interface Details

登录查看完整内容