/** * 将带字符串转成驼峰字符串,例如: project-name 转为 projectName * * @param {string} str 字符串 * @return {string} */ declare function camelCase(str: any): any; export default camelCase;