mirror of
https://github.com/rommapp/romm.git
synced 2026-02-19 07:50:57 +01:00
Included upgrades: * Python: v3.12 * Alpine: v3.20 (which uses Python 3.12) * nginx: v1.27.1
9 lines
171 B
Python
9 lines
171 B
Python
from typing import NotRequired, TypedDict
|
|
|
|
|
|
class TokenResponse(TypedDict):
|
|
access_token: str
|
|
refresh_token: NotRequired[str]
|
|
token_type: str
|
|
expires: int
|