mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 14:01:56 +08:00
10 lines
266 B
Python
10 lines
266 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]]: ...
|