We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5e65d2 commit e98abf0Copy full SHA for e98abf0
django-stubs/http/cookie.pyi
@@ -1,5 +1,8 @@
1
+from http import cookies
2
from typing import Any
3
-SimpleCookie: Any
4
+from typing_extensions import TypeAlias
5
+
6
+SimpleCookie: TypeAlias = cookies.SimpleCookie[Any]
7
8
def parse_cookie(cookie: str) -> dict[str, str]: ...
0 commit comments