/** * 将数字转换为大写金额 * @param {String | Number} Num * @returns */ export {}; declare global { interface Number { toUpperCaseAmount(): string; } }