@maddimathon/utility-typescript
Version:
TypeScript utilities (types, functions, classes) to use in various projects.
22 lines (21 loc) • 381 B
TypeScript
/**
* @since 0.1.0
*
* @packageDocumentation
*/
/*!
* @maddimathon/utility-typescript@2.0.0-beta.5
* @license MIT
*/
/**
* Converts the given string to title case.
*
* @category Functions – String
*
* @param input String to convert.
*
* @return Title case version of the input string.
*
* @source
*/
export declare function toTitleCase(input: string): string;