types.py 212 B

1234567
  1. from typing import Union
  2. TypeJson = Union[
  3. dict[str, Union[str, int, bool, "TypeJson"]],
  4. list[Union[str, int, bool, "TypeJson"]],
  5. ]
  6. """Python object that is valid JSON (can be serialized to and from)"""