UNPKG

openapi-to-ts

Version:

Generate TypeScript types from OpenAPI 3.0 specs.

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