Final TSLint fixes

This commit is contained in:
Eric Byers
2017-09-08 16:36:07 -05:00
parent b223293def
commit e65730f62e
2 changed files with 2 additions and 2 deletions

View File

@@ -6,6 +6,6 @@
/// <reference types="node" />
import { Server } from 'http';
declare function stoppable(server: Server, grace?: number): http.Server;
declare function stoppable(server: Server, grace?: number): Server;
export = stoppable;

View File

@@ -1,4 +1,4 @@
/// <reference types="node" />
import * as http from 'http';
import stoppable = require('stoppable');
const server: http.Server = stoppable(http.createServer());