6 lines
113 B
Python
6 lines
113 B
Python
from typing import (
|
|
Any,
|
|
Union,
|
|
)
|
|
|
|
JSON = Union[dict[str, Any], list[Any], bool, str, int, float, None]
|