rename to hints

This commit is contained in:
2026-01-02 12:46:09 +01:00
parent 9a46317e6c
commit aa93e8c712
3 changed files with 2 additions and 2 deletions
+4
View File
@@ -0,0 +1,4 @@
type JSONDataScalar = str | None | float | bool
type JSONDataList = list[JSONDataScalar | "JSONDataMap" | "JSONDataList"]
type JSONDataMap = dict[str, JSONDataScalar | JSONDataList | "JSONDataMap"]
type JSONData = JSONDataMap | JSONDataList