mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
10 lines
239 B
Python
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: ...
|