UNPKG

di-shan-utils

Version:

JavaScript 函数库、工具类

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