tav-ui
Version:
16 lines (15 loc) • 499 B
TypeScript
export declare function camelize(event: string): string;
/**
* @description: 转大驼峰 取出首字母,转换为大写 + 切割掉首字母
* @access: public
* @param {string} event
* @return {*}
*/
export declare function capitalize(event: string): string;
/**
* @description: 校验kebab-case
* @access: public
* @param {string} event
* @return {*}
*/
export declare function validateKebabCase(event: string): true | "组件名称不能为空" | "组件名称请遵守 kebab-case";