From e65730f62e4c404f122db362b581d599fbd66e30 Mon Sep 17 00:00:00 2001 From: Eric Byers Date: Fri, 8 Sep 2017 16:36:07 -0500 Subject: [PATCH] Final TSLint fixes --- types/stoppable/index.d.ts | 2 +- types/stoppable/stoppable-tests.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/types/stoppable/index.d.ts b/types/stoppable/index.d.ts index e3ad02919c..395dd828c8 100644 --- a/types/stoppable/index.d.ts +++ b/types/stoppable/index.d.ts @@ -6,6 +6,6 @@ /// import { Server } from 'http'; -declare function stoppable(server: Server, grace?: number): http.Server; +declare function stoppable(server: Server, grace?: number): Server; export = stoppable; diff --git a/types/stoppable/stoppable-tests.ts b/types/stoppable/stoppable-tests.ts index 69fc576c9c..84cf826bef 100644 --- a/types/stoppable/stoppable-tests.ts +++ b/types/stoppable/stoppable-tests.ts @@ -1,4 +1,4 @@ -/// +import * as http from 'http'; import stoppable = require('stoppable'); const server: http.Server = stoppable(http.createServer());