UNPKG
xe-utils-es
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
JavaScript 函数库、工具类
xe-utils-es
/
types
/
commafy.d.ts
10 lines
(9 loc)
•
223 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * 千分位分隔符、小数点 * *
@param
{
String/Number
} num 数值 *
@param
{
CommafyOptions
} options 参数 *
@return
{
string
} */
declare
function
commafy
(
num
:
any
,
options
:
any
):
any
;
export
default
commafy;