Addressed small PR feedback

Added back EOF endline; removed unnecessary parenthesis.
This commit is contained in:
Josh Goldberg
2017-04-06 09:13:07 -07:00
parent 4318786e2f
commit 40354debb1

View File

@@ -18,7 +18,7 @@ declare namespace Chai {
/**
* Provides a way to extend the internals of Chai
*/
use(fn: (chai: (any), utils: any) => void): ChaiStatic;
use(fn: (chai: any, utils: any) => void): ChaiStatic;
assert: AssertStatic;
config: Config;
AssertionError: typeof AssertionError;
@@ -1249,4 +1249,4 @@ declare module "chai" {
interface Object {
should: Chai.Assertion;
}
}