wasm_streams/writable/
sys.rsuse wasm_bindgen::prelude::*;
pub use web_sys::WritableStream;
pub use web_sys::WritableStreamDefaultWriter;
use crate::writable::into_underlying_sink::IntoUnderlyingSink;
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(js_name = WritableStream, typescript_type = "WritableStream")]
#[derive(Clone, Debug)]
pub(crate) type WritableStreamExt;
#[wasm_bindgen(constructor, js_class = WritableStream)]
pub(crate) fn new_with_into_underlying_sink(sink: IntoUnderlyingSink) -> WritableStreamExt;
}