Beta/venv/lib/python3.12/site-packages/redis/commands/json/_util.py

6 lines
137 B
Python
Raw Normal View History

2026-06-16 17:09:34 +00:00
from typing import List, Mapping, Union
JsonType = Union[
str, int, float, bool, None, Mapping[str, "JsonType"], List["JsonType"]
]