agents
Version:
A home for your AI agents
11 lines (10 loc) • 298 B
TypeScript
//#region src/utils.d.ts
/**
* Convert a camelCase string to a kebab-case string
* @param str The string to convert
* @returns The kebab-case string
*/
declare function camelCaseToKebabCase(str: string): string;
//#endregion
export { camelCaseToKebabCase };
//# sourceMappingURL=utils.d.ts.map