20 lines
388 B
TypeScript
20 lines
388 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
|