mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-27 14:42:17 +00:00
No methods or attributes are mapped (yet). This is mostly useful for constructing a `Response` from another one's body in a streaming fashion.
11 lines
403 B
Plaintext
Vendored
11 lines
403 B
Plaintext
Vendored
/* -*- 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/.
|
|
*/
|
|
|
|
// Minimum viable ReadableStream, for use by other objects.
|
|
[Exposed=(Window,Worker)]
|
|
interface ReadableStream {
|
|
};
|