UNPKG

358 BTypeScriptView Raw
1/**
2 * 将带驼峰字符串转成字符串,例如: projectName 转为 project-name
3 * @param str 字符串
4 */
5export declare function kebabCase(str: string): string;
6export declare function kebabCase(str: any): string;
7
8declare module './ctor' {
9 interface XEUtilsMethods {
10 kebabCase: typeof kebabCase;
11 }
12}
13
14export default kebabCase