mirror of
https://github.com/deadcxap/YandexMusicDiscordBot.git
synced 2026-01-09 07:31:54 +03:00
10 lines
191 B
Python
10 lines
191 B
Python
from typing import TypedDict
|
|
|
|
class Guild(TypedDict):
|
|
allow_explicit: bool
|
|
allow_menu: bool
|
|
|
|
class ExplicitGuild(TypedDict):
|
|
_id: str
|
|
allow_explicit: bool
|
|
allow_menu: bool |