blob: f79379f8c9efed309cd24e3e5ef6c7575b0e974c (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
// deno-lint-ignore-file
import { Writable } from "ext:deno_node/_stream.mjs";
const { WritableState, fromWeb, toWeb } = Writable;
export default Writable;
export { fromWeb, toWeb, WritableState };
|