Created
August 4, 2016 14:24
-
-
Save Nepoxx/5f7897ec4ead6c6352679433d9cfa0de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface RequestHandler { | |
(req: Request, res: Response, next: NextFunction): any; | |
} | |
// where Request... | |
interface Request extends http.ServerRequest, Express.Request { | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment