Bases: Protocol[Tcov]
Generic FastAPI dependency function protocol.
Source code in fasted/typing.py
| class Dependency(Protocol[Tcov]):
"""Generic FastAPI dependency function protocol."""
def __call__(
self, *args: Any, **kwargs: Any
) -> Tcov | Coroutine[Any, Any, Tcov] | Generator[Tcov, Any, Any] | AsyncGenerator[Tcov, Any]: ...
|