Fix tslint errors in through.d.ts.

This commit is contained in:
Panu Horsmalahti
2015-12-20 22:58:11 +02:00
parent 40c60850ad
commit 4ffee4a839

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;
}