From 40354debb1db20dd93f52ffe6394bb5a310109a1 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Thu, 6 Apr 2017 09:13:07 -0700 Subject: [PATCH] Addressed small PR feedback Added back EOF endline; removed unnecessary parenthesis. --- types/chai/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/chai/index.d.ts b/types/chai/index.d.ts index 7444f5fd10..a040c43249 100644 --- a/types/chai/index.d.ts +++ b/types/chai/index.d.ts @@ -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; -} \ No newline at end of file +}