/** * 千分位逗号 * * @param {Number} 数字 * @return {String} * * 例如转为 1,234,567,890 */ declare const thousandsDot: (number: number) => string; export default thousandsDot;