Files
divkit/schema/div-color-animator.json
4eb0da 44a1bd2455 Variable animators
commit_hash:6a1dce4b40aa439f99d12b0c09d8530ac5a6b7b2
2024-11-14 14:57:25 +03:00

36 lines
726 B
JSON

{
"$description": "translations.json#/div_color_animator",
"allOf": [
{
"$ref": "div-animator-base.json"
},
{
"properties": {
"type": {
"type": "string",
"enum": [
"color_animator"
]
},
"start_value": {
"$ref": "common.json#/color",
"$description": "translations.json#/div_animator_start_value"
},
"end_value": {
"$ref": "common.json#/color",
"$description": "translations.json#/div_animator_end_value"
}
},
"required": [
"type",
"end_value"
],
"platforms": [
"android",
"ios",
"web"
]
}
]
}