6 lines
183 B
TypeScript
Raw Normal View History

2019-01-06 13:14:45 -06:00
import { Stream } from "stream";
declare function StreamEvents<StreamType extends Stream>(stream: StreamType)
: StreamType;
declare namespace StreamEvents { }
export = StreamEvents