Merge pull request #14707 from kazzatso/master

[express-serve-static-core] Add missing app:Application parameter on the Response interface.
This commit is contained in:
Mine Starks
2017-03-08 10:14:26 -08:00
committed by GitHub

View File

@@ -848,6 +848,8 @@ interface Response extends http.ServerResponse, Express.Response {
*
*/
vary(field: string): Response;
app: Application;
}
interface Handler extends RequestHandler { }