Coverage for session_buddy / types.py: 100.00%
4 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-04 00:43 -0800
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-04 00:43 -0800
1"""Shared type aliases for session-buddy.
3Kept intentionally small; most modules should prefer local, explicit types.
4"""
6from __future__ import annotations
8import typing as t
10JsonValue = None | bool | int | float | str | list["JsonValue"] | dict[str, "JsonValue"]
12JsonDict = dict[str, JsonValue]