2018-09-13 22:30:51 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2014-07-25 04:53:03 +04:00
|
|
|
/* 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;
|
2017-02-09 12:37:54 +03:00
|
|
|
typedef (Blob or BufferSource or FormData or URLSearchParams or USVString) BodyInit;
|
2014-07-25 04:53:03 +04:00
|
|
|
|
|
|
|
[NoInterfaceObject, Exposed=(Window,Worker)]
|
|
|
|
interface Body {
|
|
|
|
readonly attribute boolean bodyUsed;
|
|
|
|
[Throws]
|
|
|
|
Promise<ArrayBuffer> arrayBuffer();
|
|
|
|
[Throws]
|
|
|
|
Promise<Blob> blob();
|
2015-04-04 08:55:15 +03:00
|
|
|
[Throws]
|
|
|
|
Promise<FormData> formData();
|
2014-07-25 04:53:03 +04:00
|
|
|
[Throws]
|
|
|
|
Promise<JSON> json();
|
|
|
|
[Throws]
|
2014-11-20 14:58:00 +03:00
|
|
|
Promise<USVString> text();
|
2014-07-25 04:53:03 +04:00
|
|
|
};
|
2017-08-11 04:04:55 +03:00
|
|
|
|
|
|
|
// These are helper dictionaries for the parsing of a
|
|
|
|
// getReader().read().then(data) parsing.
|
|
|
|
// See more about how these 2 helpers are used in
|
|
|
|
// dom/fetch/FetchStreamReader.cpp
|
|
|
|
dictionary FetchReadableStreamReadDataDone {
|
|
|
|
boolean done = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
dictionary FetchReadableStreamReadDataArray {
|
|
|
|
Uint8Array value;
|
|
|
|
};
|