mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 13:35:01 +08:00
7 lines
259 B
Python
7 lines
259 B
Python
from typing import Any, Dict, List, Optional, Union
|
|
|
|
from django.contrib.messages.storage.base import BaseStorage
|
|
from django.http.request import HttpRequest
|
|
|
|
def messages(request: HttpRequest) -> Dict[str, Union[Dict[str, int], List[Any], BaseStorage]]: ...
|