2014-07-24 17:53:03 -07:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* http://fetch.spec.whatwg.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef object JSON;
|
2015-03-17 08:32:04 -07:00
|
|
|
typedef (ArrayBuffer or ArrayBufferView or Blob or FormData or USVString or URLSearchParams) BodyInit;
|
2014-07-24 17:53:03 -07:00
|
|
|
|
|
|
|
[NoInterfaceObject, Exposed=(Window,Worker)]
|
|
|
|
interface Body {
|
|
|
|
readonly attribute boolean bodyUsed;
|
|
|
|
[Throws]
|
|
|
|
Promise<ArrayBuffer> arrayBuffer();
|
|
|
|
[Throws]
|
|
|
|
Promise<Blob> blob();
|
2015-04-03 22:55:15 -07:00
|
|
|
[Throws]
|
|
|
|
Promise<FormData> formData();
|
2014-07-24 17:53:03 -07:00
|
|
|
[Throws]
|
|
|
|
Promise<JSON> json();
|
|
|
|
[Throws]
|
2014-11-20 03:58:00 -08:00
|
|
|
Promise<USVString> text();
|
2014-07-24 17:53:03 -07:00
|
|
|
};
|
2014-07-24 18:30:07 -07:00
|
|
|
|
|
|
|
[NoInterfaceObject, Exposed=(Window,Worker)]
|
|
|
|
interface GlobalFetch {
|
2015-02-22 01:52:10 -08:00
|
|
|
[Throws]
|
2014-07-24 18:30:07 -07:00
|
|
|
Promise<Response> fetch(RequestInfo input, optional RequestInit init);
|
|
|
|
};
|
|
|
|
|