nonebot2/none/typing.py

8 lines
272 B
Python
Raw Normal View History

2018-10-15 17:03:50 +00:00
from typing import Union, List, Dict, Any, Sequence, Callable, Tuple
Context_T = Dict[str, Any]
Message_T = Union[str, Dict[str, Any], List[Dict[str, Any]]]
Expression_T = Union[str, Sequence[str], Callable]
2018-11-10 02:16:59 +00:00
CommandName_T = Tuple[str, ...]
2018-10-15 17:03:50 +00:00
CommandArgs_T = Dict[str, Any]