mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-19 18:31:15 +08:00
7 lines
167 B
Python
7 lines
167 B
Python
from typing import Callable
|
|
|
|
|
|
def cache_page(timeout: float, *, cache = ..., key_prefix = ...) -> Callable: ...
|
|
|
|
|
|
def never_cache(view_func: Callable) -> Callable: ... |