Add missing app parameter on the Response interface.

This commit is contained in:
Anders Hoddevik 2017-02-17 10:44:59 -08:00
parent 3177c01620
commit a90ca0db9b

View File

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