/
/
/
1"""Type definitions for nicovideo tests."""
2
3from __future__ import annotations
4
5from typing import TYPE_CHECKING
6
7if TYPE_CHECKING:
8 from pydantic import JsonValue
9
10# JSON value type alias for better type safety
11type JsonDict = dict[str, JsonValue]
12type JsonList = list[JsonValue]
13type JsonContainer = JsonDict | JsonList
14