Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/camelCase.d.ts
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

14 lines
291 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