DefinitelyTyped/title-case/title-case.d.ts
2015-07-16 22:25:10 +01:00

9 lines
350 B
TypeScript

// 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/borisyankov/DefinitelyTyped
declare module "title-case" {
function titleCase(string1: string, string2?: string): string;
export = titleCase;
}