12345678910111213141516171819 |
- 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
|