mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
10 lines
363 B
Python
10 lines
363 B
Python
from typing import Union, List, Dict, Any, Sequence, Callable, Tuple, Awaitable
|
|
|
|
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]
|
|
State_T = Dict[str, Any]
|
|
Filter_T = Callable[[Any], Union[Any, Awaitable[Any]]]
|