mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
14 lines
439 B
TypeScript
14 lines
439 B
TypeScript
// Type definitions for titlecase 1.1
|
|
// Project: https://github.com/rvagg/titlecase#readme
|
|
// Definitions by: Matthew Peveler <https://github.com/MasterOdin>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function toTitleCase(input: string): string;
|
|
|
|
declare namespace toTitleCase {
|
|
function toTitleCase(input: string): string;
|
|
function toLaxTitleCase(input: string): string;
|
|
}
|
|
|
|
export = toTitleCase;
|