mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-22 20:01:30 +08:00
10 lines
199 B
Python
10 lines
199 B
Python
from typing import (
|
|
Callable,
|
|
Union,
|
|
)
|
|
|
|
|
|
def cache_page(timeout: Union[float, int], *, cache = ..., key_prefix = ...) -> Callable: ...
|
|
|
|
|
|
def never_cache(view_func: Callable) -> Callable: ... |