mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-29 11:12:23 +08:00
Merge pull request #2105 from borisyankov/def/underscorestring
fix underscore string module declaration
This commit is contained in:
+3
-2
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user