ai-form-designer
Version:
vue3+adv的设计器,可视化开发页面表单
13 lines (12 loc) • 401 B
TypeScript
/**
* 生成一个用不重复的ID
* @param randomLength 随机id长度 0 - 11
*/
export declare function getUUID(randomLength?: number): string;
/**
将字符串的首字母大写
@param str 待处理字符串
@returns string 首字母大写后的字符串
*/
export declare function capitalizeFirstLetter(str: string): string;
export declare function removeHyphens(str: string): string;