UNPKG

@maddimathon/utility-typescript

Version:

TypeScript utilities (types, functions, classes) to use in various projects.

22 lines 411 B
/** * @since 0.1.0 * * @packageDocumentation */ /*! * @maddimathon/utility-typescript@2.0.0-beta * @license MIT */ /** * Converts the given string to title case. * * @category Formatters * * @param input String to convert. * * @return Title case version of the input string. * * @source */ export declare function toTitleCase(input: string): string; //# sourceMappingURL=toTitleCase.d.ts.map