mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
// Type definitions for connect-timeout
|
|
// Project: https://github.com/expressjs/timeout
|
|
// Definitions by: Cyril Schumacher <https://github.com/cyrilschumacher>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../express/express.d.ts" />
|
|
|
|
declare module Express {
|
|
export interface Request {
|
|
/**
|
|
* @summary Clears the timeout on the request.
|
|
*/
|
|
clearTimeout(): void;
|
|
|
|
/**
|
|
*
|
|
* @return {boolean} true if timeout fired; false otherwise.
|
|
*/
|
|
timedout(event: string, message: string): boolean;
|
|
}
|
|
}
|
|
|
|
declare module "connect-timeout" {
|
|
import express = require("express");
|
|
|
|
interface TimeoutOptions extends Object {
|
|
/**
|
|
* @summary Controls if this module will "respond" in the form of forwarding an error.
|
|
* @type {boolean}
|
|
*/
|
|
respond: boolean;
|
|
}
|
|
|
|
function timeout(timeout: string, options?: TimeoutOptions): express.RequestHandler;
|
|
export = timeout;
|
|
}
|