mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
7bb4ec59c2
gitignore change
13 lines
296 B
Python
13 lines
296 B
Python
# Generated code. Do not modify.
|
|
|
|
from __future__ import annotations
|
|
from pydivkit.core import BaseDiv, Field
|
|
import enum
|
|
import typing
|
|
|
|
class DivTransitionSelector(str, enum.Enum):
|
|
NONE = 'none'
|
|
DATA_CHANGE = 'data_change'
|
|
STATE_CHANGE = 'state_change'
|
|
ANY_CHANGE = 'any_change'
|