mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-22 11:51:29 +08:00
7 lines
181 B
Python
7 lines
181 B
Python
from typing import Any, Callable, TypeVar
|
|
|
|
_F = TypeVar("_F", bound=Callable[..., Any])
|
|
|
|
def vary_on_headers(*headers: Any) -> Callable: ...
|
|
def vary_on_cookie(func: _F) -> _F: ...
|