Merge pull request #7282 from panuhorsmalahti/through-tslint

Fix tslint errors in through.d.ts.
This commit is contained in:
Horiuchi_H
2015-12-28 15:49:54 +09:00

24
through/through.d.ts vendored
View File

@@ -6,19 +6,19 @@
/// <reference path="../node/node.d.ts" />
declare module "through" {
import stream = require("stream");
import stream = require("stream");
function through(write?: (data: any) => void,
end?: () => void,
opts?: {
autoDestroy: boolean;
}): through.ThroughStream;
function through(write?: (data: any) => void,
end?: () => void,
opts?: {
autoDestroy: boolean;
}): through.ThroughStream;
module through {
export interface ThroughStream extends stream.Transform {
autoDestroy: boolean;
}
}
module through {
export interface ThroughStream extends stream.Transform {
autoDestroy: boolean;
}
}
export = through;
export = through;
}