mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
8 lines
335 B
TypeScript
8 lines
335 B
TypeScript
//#region src/string/casing.d.ts
|
|
declare function pascalCase(str: string): string;
|
|
declare function camelCase(str: string): string;
|
|
declare function kebabCase(str: string): string;
|
|
declare function snakeCase(str: string): string;
|
|
//#endregion
|
|
export { camelCase, kebabCase, pascalCase, snakeCase };
|
|
//# sourceMappingURL=casing.d.ts.map
|