DefinitelyTyped/types/stoppable/index.d.ts
2017-09-08 16:36:07 -05:00

12 lines
373 B
TypeScript

// Type definitions for stoppable 1.0
// Project: https://github.com/hunterloftis/stoppable
// Definitions by: Eric Byers <https://github.com/EricByers>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
import { Server } from 'http';
declare function stoppable(server: Server, grace?: number): Server;
export = stoppable;