xhy-xe-utils
Version:
JavaScript 函数库、工具类
19 lines (16 loc) • 405 B
TypeScript
import { XEUtilsMethods } from '../xe-utils'
/**
* 将带驼峰字符串转成字符串
* @param str 字符串
*/
export declare function camelCase(str: string): string;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
* 将带驼峰字符串转成字符串
* @param str 字符串
*/
camelCase: typeof camelCase;
}
}
export default camelCase