1import { Writable } from 'node:stream'; 2 3export class DevNullStream extends Writable { 4 override _write(_chunk: string, _encoding: string, cb: () => void): void { 5 cb(); 6 } 7} 8