Merge pull request #2808 from PekkaPLeppanen/patch-1

Added definition to route parameter handling
This commit is contained in:
Masahiro Wakame
2014-09-15 23:36:38 +09:00
+2
View File
@@ -78,6 +78,8 @@ declare module "express" {
param(name: string, handler: RequestParamHandler): T;
param(name: string, matcher: RegExp): T;
param(name: string, mapper: (param: any) => any): T;
// Alternatively, you can pass only a callback, in which case you have the opportunity to alter the app.param() API
param(callback: (name: string, matcher: RegExp) => RequestParamHandler): T;
/**
* Special-cased "all" method, applying the given route `path`,