blob: 308009bceb643e63d9f50e6fc7d95b45ffe6344e (
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 "internal:deno_node/_stream.mjs";
const { WritableState, fromWeb, toWeb } = Writable;
export default Writable;
export { fromWeb, toWeb, WritableState };
|