From 2b05c7787265ed95c79d6d8400bcc46d141e82af Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Sat, 26 Apr 2014 09:08:53 +1000 Subject: [PATCH] fix underscore string module declaration --- underscore.string/underscore.string.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/underscore.string/underscore.string.d.ts b/underscore.string/underscore.string.d.ts index db9ec042d..9c828fdf7 100644 --- a/underscore.string/underscore.string.d.ts +++ b/underscore.string/underscore.string.d.ts @@ -562,7 +562,8 @@ interface UnderscoreStringStaticExports { toBoolean(str: string, trueValues?: any[], falseValues?: any[]): boolean; } -declare module "underscore.string" { -export = UnderscoreStringStatic; +declare module 'underscore.string' { + var underscoreString: UnderscoreStringStatic; + export = underscoreString; } // TODO interface UnderscoreString extends Underscore