/** * 首字母大写 * @param str 待转换的字符串 */ export declare const capitalize: (str: string) => string; /** * 字符串数组转换为数字数组,且过滤掉 未 NaN 的项 * @param strArr 目标 str */ export declare const str2NumberArr: (strArr: string) => number[];