mirror of
https://github.com/deadcxap/YandexMusicDiscordBot.git
synced 2026-01-11 03:21:44 +03:00
9 lines
161 B
Python
9 lines
161 B
Python
from typing import TypedDict
|
|
|
|
class User(TypedDict, total=False):
|
|
ym_token: str | None
|
|
|
|
class ExplicitUser(TypedDict):
|
|
_id: int
|
|
ym_token: str | None
|