summaryrefslogtreecommitdiff
path: root/jwt/types.py
blob: 7d9935205688a3cb45902017884633a490d59055 (plain)
1
2
3
4
5
from typing import Any, Callable, Dict

JWKDict = Dict[str, Any]

HashlibHash = Callable[..., Any]