Coverage for polar/types.py: 100%
5 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-12-05 15:52 +0000
« prev ^ index » next coverage.py v7.10.6, created at 2025-12-05 15:52 +0000
1import typing as t 1ab
3JSONDict = dict[str, t.Any] 1ab
4JSONList = list[t.Any] 1ab
5JSONObject = JSONDict | JSONList 1ab
6JSONAny = JSONList | JSONDict | None 1ab