mirror of
https://github.com/samuelcolvin/FastUI.git
synced 2023-12-01 22:22:11 +03:00
5 lines
161 B
Python
5 lines
161 B
Python
from typing import Annotated
|
|
from pydantic import Field
|
|
|
|
ClassName = Annotated[str | list[str] | dict[str, bool | None], Field(serialization_alias='className')]
|