Express' send method can be called with no parameters (#9502)

* Modified call signature of Sinon's calledWithNew method to no longer take a parameter

* Express' send method can be called with no parameters
This commit is contained in:
Connor Wyatt
2016-06-02 16:14:06 +01:00
committed by Masahiro Wakame
parent a33c790497
commit 60e962e804

View File

@@ -408,7 +408,7 @@ declare module "express-serve-static-core" {
interface Send {
(status: number, body?: any): Response;
(body: any): Response;
(body?: any): Response;
}
interface Response extends http.ServerResponse, Express.Response {