Merge pull request #3408 from jt000/master

express Response.sendStatus returns Response (not a Send object)
This commit is contained in:
Masahiro Wakame
2015-01-05 22:52:29 +09:00

View File

@@ -438,7 +438,7 @@ declare module "express" {
*
* @param code
*/
sendStatus(code: number): Send;
sendStatus(code: number): Response;
/**
* Set Link header field with the given `links`.