/ lib / jedi / third_party / django-stubs / django-stubs / template / context_processors.pyi
context_processors.pyi
 1  from typing import Any, Callable, Dict, List, Tuple, Union
 2  
 3  from django.core.handlers.wsgi import WSGIRequest
 4  from django.http.request import HttpRequest
 5  from django.utils.functional import SimpleLazyObject
 6  
 7  def csrf(request: HttpRequest) -> Dict[str, SimpleLazyObject]: ...
 8  def debug(request: HttpRequest) -> Dict[str, Union[Callable, bool]]: ...
 9  def i18n(request: WSGIRequest) -> Dict[str, Union[List[Tuple[str, str]], bool, str]]: ...
10  def tz(request: HttpRequest) -> Dict[str, str]: ...
11  def static(request: HttpRequest) -> Dict[str, str]: ...
12  def media(request: Any): ...
13  def request(request: HttpRequest) -> Dict[str, HttpRequest]: ...