/** * 判断是否为数字函数 * @category Types * @desc : 字符串类型的数字也判定为true,如 '12' * @param num : 需要判断的数据 * @returns : 返回判断结果布尔值 */ export declare const isNumber: (num: any) => boolean;