Files
divkit/json-builder/python/pydivkit/div/div_shape.py
T
timatifey 7bb4ec59c2 pydivkit gitignore
gitignore change
2022-10-20 13:45:09 +03:00

15 lines
284 B
Python

# Generated code. Do not modify.
from __future__ import annotations
from pydivkit.core import BaseDiv, Field
import enum
import typing
from . import div_rounded_rectangle_shape
from typing import Union
DivShape = Union[
div_rounded_rectangle_shape.DivRoundedRectangleShape,
]