/** * 金额格式化 * @param data */ type moneyType = number | string; interface ShowMoneyType { (data: moneyType): string; } export declare const showMoney: ShowMoneyType; export {};