mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-15 12:09:40 +08:00
9 lines
350 B
TypeScript
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;
|
|
} |