From 3369d546a148494b9c9e7fa4304c1ab56bfc7dd5 Mon Sep 17 00:00:00 2001 From: Alex Varju Date: Tue, 17 Sep 2013 18:25:00 -0700 Subject: [PATCH] sinon expectations extend the stub class --- sinon/sinon.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sinon/sinon.d.ts b/sinon/sinon.d.ts index 161ea8e60..61dfafa10 100644 --- a/sinon/sinon.d.ts +++ b/sinon/sinon.d.ts @@ -123,7 +123,7 @@ interface SinonStatic { stub: SinonStubStatic; } -interface SinonExpectation { +interface SinonExpectation extends SinonStub { atLeast(n: number): SinonExpectation; atMost(n: number): SinonExpectation; never(): SinonExpectation;