1
This commit is contained in:
13
20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/camelCase.d.ts
vendored
Normal file
13
20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/camelCase.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* 将带字符串转成驼峰字符串,例如: project-name 转为 projectName
|
||||
* @param str 字符串
|
||||
*/
|
||||
export declare function camelCase(str: string): string;
|
||||
|
||||
declare module './ctor' {
|
||||
interface XEUtilsMethods {
|
||||
camelCase: typeof camelCase;
|
||||
}
|
||||
}
|
||||
|
||||
export default camelCase
|
||||
Reference in New Issue
Block a user