/** * 将阿拉伯数字翻译成中文的大写数字 * @param {String | Number} num * @returns */ export {}; declare global { interface Number { toUpperCase(): string; } }