From 4ffee4a839f36d4f13ea7b0bc03ed2ca853e79d5 Mon Sep 17 00:00:00 2001 From: Panu Horsmalahti Date: Sun, 20 Dec 2015 22:58:11 +0200 Subject: [PATCH] Fix tslint errors in through.d.ts. --- through/through.d.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/through/through.d.ts b/through/through.d.ts index 6e13e4d623..70a7d989c8 100644 --- a/through/through.d.ts +++ b/through/through.d.ts @@ -6,19 +6,19 @@ /// 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; }