/** * 格式化金额字符串(或金额数字) * @returns {string} 格式化好在字符串 eg: 1,123,456.02 */ export default function format_money(money: number | string): string;