mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 05:51:53 +08:00
11 lines
222 B
Python
11 lines
222 B
Python
from typing import Any, Optional
|
|
|
|
from django.http.request import HttpRequest
|
|
from django.utils.safestring import SafeText
|
|
|
|
|
|
def csrf_input(request: HttpRequest) -> SafeText: ...
|
|
|
|
csrf_input_lazy: Any
|
|
csrf_token_lazy: Any
|