From 3c1837162b19bc3313917ff9145cb786cd5d78c8 Mon Sep 17 00:00:00 2001 From: vvakame Date: Thu, 3 Apr 2014 13:36:36 +0900 Subject: [PATCH] fix should/should.d.ts --- should/should.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/should/should.d.ts b/should/should.d.ts index b3c37846a..13eca9ccf 100644 --- a/should/should.d.ts +++ b/should/should.d.ts @@ -111,8 +111,8 @@ interface Internal extends ShouldInternal { inspect(value: any, obj: any): any; } -declare module "should" { - export = Internal; -} - declare var should: Internal; + +declare module "should" { + export = should; +}