Coverage for src/jquantstats/_types.py: 100%
4 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-23 06:13 +0000
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-23 06:13 +0000
1# SPDX-License-Identifier: MIT
2"""Type aliases for narwhals-compatible input frames."""
4from typing import TypeAlias
6import narwhals.typing as nw_typing
8NativeFrame: TypeAlias = nw_typing.IntoDataFrame
9NativeFrameOrScalar: TypeAlias = nw_typing.IntoDataFrame | float