astro-ghostcms/.pnpm-store/v3/files/8b/637afd6032ef06712b1700b3c05...

19 lines
436 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
* Convert string to camelCase
*/
declare function camelize(str: string): string;
/**
* Convert string to PascaleCase
*/
declare function pascalize(str: string): string;
/**
* Convert camelCase string to kebab-case
*/
declare function camelToKebab(key: string): string;
/**
* Convert camelCase string to snake-case
*/
declare function snakelize(str: string): string;
export { camelToKebab, camelize, pascalize, snakelize };