UNPKG

openapi-to-ts

Version:

Generate TypeScript types from OpenAPI 3.0 specs.

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