Add definitions for boolify-string

This commit is contained in:
hoeni
2015-11-18 11:20:25 +01:00
parent fc341765eb
commit 50cfb6967b
2 changed files with 69 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
// Type definitions for boolify-string
// Project: https://github.com/sanemat/node-boolify-string
// Definitions by: Tobias Henöckl <http://www.sisyphus.de/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "boolify-string" {
function boolifyString(obj: any): boolean;
export = boolifyString;
}