fix underscore string module declaration

This commit is contained in:
Basarat Ali Syed 2014-04-26 09:08:53 +10:00
parent 1c1c12eaea
commit 2b05c77872

View File

@ -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<string>