@promptbook/gemini
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
18 lines (17 loc) • 454 B
TypeScript
/**
* Semantic helper for PascalCase strings
*
* @example 'HelloWorld'
* @example 'ILovePromptbook'
* @public exported from `@promptbook/utils`
*/
export type string_PascalCase = string;
/**
*
* @param text @public exported from `@promptbook/utils`
* @returns
* @example 'HelloWorld'
* @example 'ILovePromptbook'
* @public exported from `@promptbook/utils`
*/
export declare function normalizeTo_PascalCase(text: string): string_PascalCase;