From a565c4ed685e963c66de8b1ad828e0858afabd88 Mon Sep 17 00:00:00 2001 From: Armando Garcia Date: Tue, 24 Mar 2015 09:38:37 -0500 Subject: [PATCH] Update sinon-chai.d.ts declare module chai { interface Expect { callCount(count: number): Expect; } } Added --> callCount(count: number): Expect; --- sinon-chai/sinon-chai.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sinon-chai/sinon-chai.d.ts b/sinon-chai/sinon-chai.d.ts index 0f639abb7..d16969dd9 100644 --- a/sinon-chai/sinon-chai.d.ts +++ b/sinon-chai/sinon-chai.d.ts @@ -11,6 +11,7 @@ declare module chai { calledOnce: Expect; calledTwice: Expect; calledThrice: Expect; + callCount(count: number): Expect; calledBefore(spy: Function): Expect; calledAfter(spy: Function): Expect; calledWithNew: Expect;