_util.py 116 B

123
  1. from typing import Any, Dict, List, Union
  2. JsonType = Union[str, int, float, bool, None, Dict[str, Any], List[Any]]