/** * 四舍五入到指定小数位 * * @param num - 待处理数字 * @param places - 最大小数位数,默认2位小数 */ export declare function roundNum(num: number, places?: number): number