mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
17 lines
300 B
Python
17 lines
300 B
Python
# Generated code. Do not modify.
|
|
# flake8: noqa: F401, F405, F811
|
|
|
|
from __future__ import annotations
|
|
|
|
import enum
|
|
import typing
|
|
|
|
from pydivkit.core import BaseDiv, Expr, Field
|
|
|
|
|
|
class DivImageScale(str, enum.Enum):
|
|
FILL = "fill"
|
|
NO_SCALE = "no_scale"
|
|
FIT = "fit"
|
|
STRETCH = "stretch"
|