from typing import Any, Dict, List, Tuple, Union

TimeoutType = Union[float, Tuple[float, float]]

RequestData = Union[Dict[str, Any], List[Any]]
