/** * If the `globalThis` has a [`WritableStream`](https://developer.mozilla.org/en-US/docs/Web/API/WritableStream), or if the `node:stream/web` package has a `WritableStream`, then the `WritableStream` constructor. * Otherwise referencing it will throw a `ReferenceError`. * * - Browser * References the `globalThis.WritableStream` * * - Deno * References the `globalThis.WritableStream` * * - Node.js 18.0+ * References the `globalThis.WritableStream` * * - Node.js 15.7+ or 14.18+ * References the [`WritableStream`](https://nodejs.org/api/webstreams.html#class-writablestream) of `node:stream/web` package */ declare let _WritableStream: { prototype: WritableStream; new (underlyingSink?: UnderlyingSink | undefined, strategy?: QueuingStrategy | undefined): WritableStream; }; export { _WritableStream };