UNPKG

openapi-to-ts

Version:

Generate TypeScript types from OpenAPI 3.0 specs.

7 lines (6 loc) 209 B
/** * Converts a text to title case. For example, it * turns helloWorld into HelloWorld. * @param text the text to convert. */ export declare const toTitleCase: (text: string | undefined) => string;