Files
divkit/test_data/expression_test_data/function_signatures_format.json
T
gulevsky 1426d82371 add decimalFormat function support
commit_hash:30dcfc43ef97eaeda0466e23327ea6f5daf83020
2025-08-28 17:08:53 +03:00

93 lines
1.9 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": [
"android",
"web",
"ios"
]
},
{
"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": [
"android",
"web",
"ios"
]
},
{
"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": [
"android",
"web",
"ios"
]
},
{
"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": [
"android",
"web",
"ios"
]
}
]
}