Files
2021-12-29 01:57:42 -08:00

6 lines
183 B
TypeScript

import { Stream } from "stream";
declare function StreamEvents<StreamType extends Stream>(stream: StreamType)
: StreamType;
declare namespace StreamEvents { }
export = StreamEvents