Add State_T

This commit is contained in:
Richard Chien 2019-01-25 00:13:53 +08:00
parent 41803be7d8
commit 6b6daf7235

View File

@ -5,3 +5,4 @@ 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]
State_T = Dict[str, Any]