Files
django-stubs/django-stubs-generated/contrib/staticfiles/views.pyi
2018-11-10 17:49:18 +03:00

10 lines
239 B
Python

from typing import Any, Optional
from django.core.handlers.wsgi import WSGIRequest
from django.http.response import FileResponse
def serve(
request: WSGIRequest, path: str, insecure: bool = ..., **kwargs: Any
) -> FileResponse: ...