/** * 字符串转换为数字 * @param arr 字符串数组 * @return 数字数组 * @example str2num(arr); */ export default function str2num(arr: string[]): number[];