| 1 | import { Readable, Writable } from 'node:stream'; |
| 2 | |
| 3 | export class MockWritable extends Writable { |
| 4 | public buffer: string[] = []; |
| 5 | public isTTY = false; |
| 6 | public columns = 80; |
nothing calls this directly
no outgoing calls
no test coverage detected