mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-26 19:33:45 +03:00
61 lines
1.3 KiB
Python
61 lines
1.3 KiB
Python
import datetime
|
|
import typing
|
|
|
|
from . import helpers
|
|
from .. import _tl
|
|
from ..types import _custom
|
|
|
|
Phone = str
|
|
Username = str
|
|
PeerID = int
|
|
Entity = typing.Union[_tl.User, _tl.Chat, _tl.Channel]
|
|
FullEntity = typing.Union[_tl.UserFull, _tl.messages.ChatFull, _tl.ChatFull, _tl.ChannelFull]
|
|
|
|
EntityLike = typing.Union[
|
|
Phone,
|
|
Username,
|
|
PeerID,
|
|
_tl.TypePeer,
|
|
_tl.TypeInputPeer,
|
|
Entity,
|
|
FullEntity
|
|
]
|
|
EntitiesLike = typing.Union[EntityLike, typing.Sequence[EntityLike]]
|
|
|
|
ButtonLike = typing.Union[_tl.TypeKeyboardButton, _custom.Button]
|
|
MarkupLike = typing.Union[
|
|
_tl.TypeReplyMarkup,
|
|
ButtonLike,
|
|
typing.Sequence[ButtonLike],
|
|
typing.Sequence[typing.Sequence[ButtonLike]]
|
|
]
|
|
|
|
TotalList = helpers.TotalList
|
|
|
|
DateLike = typing.Optional[typing.Union[float, datetime.datetime, datetime.date, datetime.timedelta]]
|
|
|
|
LocalPath = str
|
|
ExternalUrl = str
|
|
BotFileID = str
|
|
FileLike = typing.Union[
|
|
LocalPath,
|
|
ExternalUrl,
|
|
BotFileID,
|
|
bytes,
|
|
typing.BinaryIO,
|
|
_tl.TypeMessageMedia,
|
|
_tl.TypeInputFile,
|
|
_tl.TypeInputFileLocation
|
|
]
|
|
|
|
OutFileLike = typing.Union[
|
|
str,
|
|
typing.Type[bytes],
|
|
typing.BinaryIO
|
|
]
|
|
|
|
MessageLike = typing.Union[str, _tl.Message]
|
|
MessageIDLike = typing.Union[int, _tl.Message, _tl.TypeInputMessage]
|
|
|
|
ProgressCallback = typing.Callable[[int, int], None]
|