/** * 数字优化显示.按照.和中文分割,赋予不同样式 * @param val 数字 例如:12.23万 1234 * @param spiltPoint .是否分割 * */ declare type DataType = 'num' | 'character' | 'suffixNum'; declare type DataList = { type: DataType; text: string; }[]; export declare const niceNumShow: (val?: string | number | null | undefined, spiltPoint?: boolean) => DataList; export {}; //# sourceMappingURL=niceNumShow.d.ts.map