Add coffeeify

This commit is contained in:
tkQubo
2015-08-26 21:46:42 +09:00
parent fa8d9683f3
commit 7d3ff05c2d
3 changed files with 54 additions and 2 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
declare module "through" {
import stream = require("stream");
function through(write?: (data) => void,
function through(write?: (data: any) => void,
end?: () => void,
opts?: {
autoDestroy: boolean;
@@ -21,4 +21,4 @@ declare module "through" {
}
export = through;
}
}