Merge pull request #2105 from borisyankov/def/underscorestring

fix underscore string module declaration
This commit is contained in:
Basarat Ali Syed
2014-04-26 09:58:27 +10:00
+3 -2
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>