mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
333 B
TypeScript
9 lines
333 B
TypeScript
// 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;
|
|
}
|