mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
504 B
TypeScript
14 lines
504 B
TypeScript
// Type definitions for express-domain-middleware
|
|
// Project: https://www.npmjs.com/package/express-domain-middleware
|
|
// Definitions by: Hookclaw <https://github.com/hookclaw>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="express" />
|
|
|
|
declare module "express-domain-middleware" {
|
|
import express = require('express');
|
|
function e(req: express.Request, res: express.Response, next: express.NextFunction): any;
|
|
export = e;
|
|
}
|