django-vue3-admin-web/node_modules/xe-utils/camelCase.d.ts
2025-10-20 21:21:14 +08:00

14 lines
304 B
TypeScript

/**
* 将带字符串转成驼峰字符串,例如: project-name 转为 projectName
* @param str 字符串
*/
export declare function camelCase(str: string): string;
declare module './ctor' {
interface XEUtilsMethods {
camelCase: typeof camelCase;
}
}
export default camelCase