From 177897f1c50ae1c66c3a3edaa0aa69ea4d50fc01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Rudge?= Date: Wed, 26 Feb 2014 10:41:42 -0300 Subject: [PATCH] added missing object to sinon requests: SinonFakeXMLHttpRequest[]; --- sinon/sinon.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sinon/sinon.d.ts b/sinon/sinon.d.ts index f9b33c082..eb62a286e 100644 --- a/sinon/sinon.d.ts +++ b/sinon/sinon.d.ts @@ -245,6 +245,7 @@ interface SinonFakeServer { autoRespondAfter: number; fakeHTTPMethods: boolean; getHTTPMethod: (request: SinonFakeXMLHttpRequest) => string; + requests: SinonFakeXMLHttpRequest[]; // Methods respondWith(body: string): void;