Files
DefinitelyTyped/types/to-title-case-gouch/index.d.ts
2017-03-24 14:27:52 -07:00

9 lines
275 B
TypeScript

// Type definitions for to-title-case
// Project: https://github.com/gouch/to-title-case
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface String {
toTitleCase(): string;
}