UNPKG

304 BTypeScriptView Raw
1/**
2 * 将带字符串转成驼峰字符串,例如: project-name 转为 projectName
3 * @param str 字符串
4 */
5export declare function camelCase(str: string): string;
6
7declare module './ctor' {
8 interface XEUtilsMethods {
9 camelCase: typeof camelCase;
10 }
11}
12
13export default camelCase