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