mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
11 lines
245 B
Python
11 lines
245 B
Python
from django.contrib.messages.storage.base import BaseStorage
|
|
from django.http.request import HttpRequest
|
|
from typing import (
|
|
Dict,
|
|
Union,
|
|
)
|
|
|
|
|
|
def messages(
|
|
request: HttpRequest
|
|
) -> Dict[str, Union[Dict[str, int], BaseStorage]]: ... |