mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 13:04:47 +08:00
9 lines
356 B
Python
9 lines
356 B
Python
from typing import Any, Optional
|
|
|
|
from django.contrib.admin.options import ModelAdmin
|
|
from django.core.handlers.wsgi import WSGIRequest
|
|
from django.db.models.query import QuerySet
|
|
from django.template.response import TemplateResponse
|
|
|
|
def delete_selected(modeladmin: ModelAdmin, request: WSGIRequest, queryset: QuerySet) -> Optional[TemplateResponse]: ...
|