nonebot2/nonebot/typing.py
2019-01-25 18:29:48 +08:00

9 lines
334 B
Python

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]
CommandName_T = Tuple[str, ...]
CommandArgs_T = Dict[str, Any] # deprecated, use `State_T` instead
State_T = Dict[str, Any]