Coverage for notion_client/typing.py: 100%
3 statements
« prev ^ index » next coverage.py v7.10.5, created at 2025-08-26 10:36 +0000
« prev ^ index » next coverage.py v7.10.5, created at 2025-08-26 10:36 +0000
1"""Custom type definitions for notion-sdk-py."""
3from typing import Awaitable, TypeVar, Union
5T = TypeVar("T")
6SyncAsync = Union[T, Awaitable[T]]