mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 21:46:43 +08:00
33 lines
692 B
Python
33 lines
692 B
Python
from collections import OrderedDict
|
|
from typing import Any, Callable, Dict, Union
|
|
|
|
from django.core.cache.backends.base import BaseCache as BaseCache
|
|
|
|
DEFAULT_CACHE_ALIAS: str
|
|
|
|
|
|
class CacheHandler:
|
|
def __init__(self) -> None: ...
|
|
|
|
def __getitem__(self, alias: str) -> BaseCache: ...
|
|
|
|
def all(self): ...
|
|
|
|
|
|
class DefaultCacheProxy:
|
|
def __getattr__(
|
|
self, name: str
|
|
) -> Union[Callable, Dict[str, float], OrderedDict, int]: ...
|
|
|
|
def __setattr__(self, name: str, value: Callable) -> None: ...
|
|
|
|
def __delattr__(self, name: Any): ...
|
|
|
|
def __contains__(self, key: str) -> bool: ...
|
|
|
|
def __eq__(self, other: Any): ...
|
|
|
|
|
|
cache: Any
|
|
caches: CacheHandler
|