mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-19 02:15:59 +08:00
move generated stubs to separate directory, too messty
This commit is contained in:
11
django-stubs-generated/views/decorators/cache.pyi
Normal file
11
django-stubs-generated/views/decorators/cache.pyi
Normal file
@@ -0,0 +1,11 @@
|
||||
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: ...
|
||||
Reference in New Issue
Block a user