Urara-Blog/node_modules/.pnpm-store/v3/files/38/a95805cb1da82cd4871f1080d02db78e7b95b0ea1dbb78265fb86d30b21dea42fd8421d25f18e7c388697658831ce7cafca880e8836809d93551130623c432
2022-08-14 01:14:53 +08:00

18 lines
433 B
Text

/**
* 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 string string to snake-case
*/
declare function snakelize(str: string): string;
export { camelToKebab, camelize, pascalize, snakelize };