mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-16 19:09:18 +08:00
Add "express-domain-middleware.d.ts" (#9396)
* Add "express-domain-middleware.d.ts" * Add reference comment
This commit is contained in:
committed by
Masahiro Wakame
parent
f3fb377beb
commit
be20672826
@@ -0,0 +1,2 @@
|
||||
/// <reference path="express-domain-middleware.d.ts" />
|
||||
import fn = require('express-domain-middleware');
|
||||
12
express-domain-middleware/express-domain-middleware.d.ts
vendored
Normal file
12
express-domain-middleware/express-domain-middleware.d.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
// 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
|
||||
|
||||
/// <reference path="../express/express.d.ts" />
|
||||
|
||||
declare module "express-domain-middleware" {
|
||||
import express = require('express');
|
||||
function e(req: express.Request, res: express.Response, next: express.NextFunction): any;
|
||||
export = e;
|
||||
}
|
||||
Reference in New Issue
Block a user