Files
django-stubs/django-stubs/views/decorators/vary.pyi
2019-04-13 22:31:49 +03:00

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: ...