From 78a57d6e3756497fef71aad9f213ca83fb328c83 Mon Sep 17 00:00:00 2001 From: Sobieck00 Date: Sat, 11 Jan 2014 07:37:32 -0600 Subject: [PATCH] Update sinon.d.ts I updated sinon to export for RequireJs with a declare statement at the bottom of the document. --- sinon/sinon.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sinon/sinon.d.ts b/sinon/sinon.d.ts index a33d65dfe..7d207ef2a 100644 --- a/sinon/sinon.d.ts +++ b/sinon/sinon.d.ts @@ -390,3 +390,7 @@ interface SinonStatic { } declare var sinon: SinonStatic; + +declare module "sinon" { + export = sinon; +}