Preview 2.0 is now in Public Beta!
Read the Announcement
HttpRequestOptions
interface HttpRequestOptions {
  content: string | FormData | ArrayBuffer;
  dontFollowRedirects: boolean;
  headers: any;
  method: string;
  timeout: number;
  url: string;
}

Summary

Properties

content

content?: string | FormData | ArrayBuffer

dontFollowRedirects

dontFollowRedirects?: boolean

headers

method

method: string

timeout

timeout?: number

url

Previous
HttpContent