DefinitelyTyped/types/humanize-string/index.d.ts
Kevin Nacios 5beff6a920 Add types for humanize-string (#23266)
* Add types for humanize-string

* remove namespace
2018-01-30 11:22:36 -08:00

9 lines
318 B
TypeScript

// Type definitions for humanize-string 1.0
// Project: https://github.com/sindresorhus/humanize-string/
// Definitions by: Kevin Nacios <https://github.com/ragnarok56>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function humanizeString(text: string): string;
export = humanizeString;