@types/stoppable
TypeScript definitions for stoppable
Last updated 5 years ago by types .
MIT · Repository · Original npm · Tarball · package.json
$ cnpm install @types/stoppable 
SYNC missed versions from official npm registry.

Installation

npm install --save @types/stoppable

Summary

This package contains type definitions for stoppable (https://github.com/hunterloftis/stoppable).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stoppable.

index.d.ts

// Type definitions for stoppable 1.1
// Project: https://github.com/hunterloftis/stoppable
// Definitions by: Eric Byers <https://github.com/EricByers>
//                 John Plusjé <https://github.com/jplusje>
//                 BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node" />
import * as http from "http";
import * as https from "https";

declare namespace stoppable {
    // Left for backwards compatibility
    type StoppableServer = http.Server & WithStop;

    interface WithStop {
        /**
         * Closes the server.
         *
         * @param callback Passed along to the existing `server.close` function to
         * auto-register a `'close'` event. The first agrument is an error, and
         * the second argument indicates whether it stopped gracefully.
         */
        stop(callback?: (e: Error | undefined, gracefully: boolean) => any): void;
    }
}

/**
 * Decorates a server instance with a `stop` method.
 *
 * @param server Any HTTP or HTTPS Server instance.
 * @param grace Milliseconds to wait before force-closing connections. Defaults to
 *              `Infinity` (don't force-close). If you want to immediately kill all sockets
 *              you can use a grace of `0`.
 * @returns The server instance, so can be chained, or can be run as a standalone statement.
 *
 * @example
 * import * as http from 'http';
 * import stoppable = require('stoppable');
 *
 * const server = stoppable(http.createServer((req, res) => {}));
 * server.stop();
 */
declare function stoppable<T extends http.Server | https.Server>(server: T, grace?: number): T & stoppable.WithStop;

export = stoppable;

Additional Details

  • Last updated: Mon, 31 May 2021 17:01:23 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by Eric Byers, John Plusjé, and BendingBender.

Current Tags

  • 1.1.1                                ...           latest (5 years ago)
  • 1.1.0                                ...           ts2.0 (7 years ago)
  • 1.1.0                                ...           ts2.1 (7 years ago)
  • 1.1.0                                ...           ts2.2 (7 years ago)
  • 1.1.0                                ...           ts2.3 (7 years ago)
  • 1.1.0                                ...           ts2.4 (7 years ago)
  • 1.1.0                                ...           ts2.5 (7 years ago)
  • 1.1.0                                ...           ts2.6 (7 years ago)
  • 1.1.0                                ...           ts2.7 (7 years ago)
  • 1.1.0                                ...           ts2.8 (7 years ago)
  • 1.1.0                                ...           ts2.9 (7 years ago)
  • 1.1.0                                ...           ts3.0 (7 years ago)
  • 1.1.0                                ...           ts3.1 (7 years ago)
  • 1.1.0                                ...           ts3.2 (7 years ago)
  • 1.1.0                                ...           ts3.3 (7 years ago)
  • 1.1.0                                ...           ts3.4 (7 years ago)
  • 1.1.0                                ...           ts3.5 (7 years ago)
  • 1.1.1                                ...           ts3.6 (5 years ago)
  • 1.1.1                                ...           ts3.7 (5 years ago)
  • 1.1.1                                ...           ts3.8 (5 years ago)
  • 1.1.1                                ...           ts3.9 (5 years ago)
  • 1.1.1                                ...           ts4.0 (5 years ago)
  • 1.1.1                                ...           ts4.1 (5 years ago)
  • 1.1.1                                ...           ts4.2 (5 years ago)
  • 1.1.1                                ...           ts4.3 (5 years ago)
  • 1.1.1                                ...           ts4.4 (5 years ago)
  • 1.1.1                                ...           ts4.5 (5 years ago)
  • 1.1.1                                ...           ts4.6 (5 years ago)
  • 1.1.1                                ...           ts4.7 (5 years ago)
  • 1.1.1                                ...           ts4.8 (5 years ago)
  • 1.1.1                                ...           ts4.9 (5 years ago)
  • 1.1.1                                ...           ts5.0 (5 years ago)
  • 1.1.1                                ...           ts5.1 (5 years ago)

3 Versions

  • 1.1.1                                ...           5 years ago
  • 1.1.0                                ...           7 years ago
  • 1.0.0                                ...           9 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |