aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/jwt/types.py
diff options
context:
space:
mode:
Diffstat (limited to '.venv/lib/python3.12/site-packages/jwt/types.py')
-rw-r--r--.venv/lib/python3.12/site-packages/jwt/types.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/jwt/types.py b/.venv/lib/python3.12/site-packages/jwt/types.py
new file mode 100644
index 00000000..7d993520
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/jwt/types.py
@@ -0,0 +1,5 @@
+from typing import Any, Callable, Dict
+
+JWKDict = Dict[str, Any]
+
+HashlibHash = Callable[..., Any]