Files
FastUI/python/fastui/components/extra.py
Samuel Colvin e06fddf29e Bootstrap (#5)
2023-11-24 10:28:20 +00:00

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')]