index.d.ts 183 B

12345
  1. import { Stream } from "stream";
  2. declare function StreamEvents<StreamType extends Stream>(stream: StreamType)
  3. : StreamType;
  4. declare namespace StreamEvents { }
  5. export = StreamEvents