Files
divkit/test_data/expression_test_data/function_signatures_format.json
T
4eb0da ac77391c38 Number formatter
commit_hash:c5eadf6f87acd513565e1b0410d073c56a9ae85f
2025-08-07 16:48:23 +03:00

85 lines
1.8 KiB
JSON

{
"signatures": [
{
"function_name": "decimalFormat",
"doc": "Returns a string value from an integer using format.",
"arguments": [
{
"type": "integer",
"doc": "Integer value to format."
},
{
"type": "string",
"doc": "Number format."
}
],
"result_type": "string",
"platforms": [
"web"
]
},
{
"function_name": "decimalFormat",
"doc": "Returns a string value from an number using format.",
"arguments": [
{
"type": "number",
"doc": "Number value to format."
},
{
"type": "string",
"doc": "Number format."
}
],
"result_type": "string",
"platforms": [
"web"
]
},
{
"function_name": "decimalFormat",
"doc": "Returns a string value from an integer using format and locale.",
"arguments": [
{
"type": "integer",
"doc": "Integer value to format."
},
{
"type": "string",
"doc": "Number format."
},
{
"type": "string",
"doc": "Locale."
}
],
"result_type": "string",
"platforms": [
"web"
]
},
{
"function_name": "decimalFormat",
"doc": "Returns a string value from an number using format and locale.",
"arguments": [
{
"type": "number",
"doc": "Number value to format."
},
{
"type": "string",
"doc": "Number format."
},
{
"type": "string",
"doc": "Locale."
}
],
"result_type": "string",
"platforms": [
"web"
]
}
]
}