add missing 'routes' property to application

This commit is contained in:
Alex Varju
2013-09-10 18:34:53 -07:00
parent 1afb50b0e5
commit 93cba1a24c
+10
View File
@@ -1076,6 +1076,16 @@ interface ExpressApplication {
map: any;
locals: any;
/**
* The app.routes object houses all of the routes defined mapped by the
* associated HTTP verb. This object may be used for introspection
* capabilities, for example Express uses this internally not only for
* routing but to provide default OPTIONS behaviour unless app.options()
* is used. Your application or framework may also remove routes by
* simply by removing them from this object.
*/
routes: any;
}
interface Express extends ExpressApplication {