Unwrap all lone ambient external modules

This commit is contained in:
Ryan Cavanaugh
2016-04-22 14:12:45 -07:00
parent fa7a5ddc9b
commit 4a433abbf4
616 changed files with 74328 additions and 75201 deletions

25
through/through.d.ts vendored
View File

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