// Type definitions for title-case // Project: https://github.com/blakeembrey/title-case // Definitions by: Sam Saint-Pettersen // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module "title-case" { function titleCase(string1: string, string2?: string): string; export = titleCase; }