Files
django-stubs/django/views/decorators/cache.pyi
2018-07-29 18:27:46 +03:00

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