mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +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 DivFontWeight(str, enum.Enum):
|
|
LIGHT = "light"
|
|
MEDIUM = "medium"
|
|
REGULAR = "regular"
|
|
BOLD = "bold"
|