UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

9 lines (8 loc) 346 B
// Type definitions for title-case // Project: https://github.com/blakeembrey/title-case // Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare module "title-case" { function titleCase(string1: string, string2?: string): string; export = titleCase; }