mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 16:27:09 +08:00
6 lines
260 B
Python
6 lines
260 B
Python
from typing import Any, Callable, Optional
|
|
|
|
def cache_page(timeout: float, *, cache: Optional[Any] = ..., key_prefix: Optional[Any] = ...) -> Callable: ...
|
|
def cache_control(**kwargs: Any) -> Callable: ...
|
|
def never_cache(view_func: Callable) -> Callable: ...
|