PaiGram/model/types.py
2022-07-26 18:07:31 +08:00

5 lines
124 B
Python

from typing import Dict, Any, Callable, TypeVar
JSONDict = Dict[str, Any]
Func = TypeVar("Func", bound=Callable[..., Any])