Made all arguments optional

This commit is contained in:
Andrew Gaspar
2013-08-15 23:13:11 -05:00
parent ec27374e41
commit b1ae048030

View File

@@ -8,7 +8,7 @@
declare module "through" {
import Stream = require("stream");
function through(write: (data) => void,
function through(write?: (data) => void,
end?: () => void,
opts?: {
autoDestroy: boolean;