On this page
ResponseOptionsArgs
interface
| npm Package | @angular/http | 
|---|---|
| Module | import { ResponseOptionsArgs } from '@angular/http'; | 
     
| Source | http/src/interfaces.ts | 
Interface Overview
interface ResponseOptionsArgs { 
  body?: string|Object|FormData|ArrayBuffer|Blob|null
  status?: number|null
  statusText?: string|null
  headers?: Headers|null
  type?: ResponseType|null
  url?: string|null
}
  Description
Interface for options to construct a Response, based on ResponseInit from the Fetch spec.
Members
body?: string|Object|FormData|ArrayBuffer|Blob|null
  status?: number|null
  statusText?: string|null
  headers?: Headers|null
  type?: ResponseType|null
  url?: string|null
  © 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
 https://v4.angular.io/api/http/ResponseOptionsArgs