12345678910111213141516171819 |
- import { XEUtilsMethods } from '../xe-utils'
- /**
- * 将字符串转成驼峰字符串
- * @param str 字符串
- */
- export declare function kebabCase(str: string): string;
- declare module '../xe-utils' {
- interface XEUtilsMethods {
- /**
- * 将字符串转成驼峰字符串
- * @param str 字符串
- */
- kebabCase: typeof kebabCase;
- }
- }
- export default kebabCase
|