Merge pull request #3994 from pgrm/patch-1

add options object to errorhandler function
This commit is contained in:
Masahiro Wakame
2015-04-03 00:12:31 +09:00
+2 -2
View File
@@ -7,6 +7,6 @@
declare module "errorhandler" {
import express = require('express');
function e(): express.ErrorRequestHandler;
function e(options?: {log?: any}): express.ErrorRequestHandler;
export = e;
}
}