mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 13:35:01 +08:00
12 lines
363 B
Python
12 lines
363 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]: ...
|