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

1"""Shared type aliases for session-buddy. 

2 

3Kept intentionally small; most modules should prefer local, explicit types. 

4""" 

5 

6from __future__ import annotations 

7 

8import typing as t 

9 

10JsonValue = None | bool | int | float | str | list["JsonValue"] | dict[str, "JsonValue"] 

11 

12JsonDict = dict[str, JsonValue]