18 lines
454 B
Python
18 lines
454 B
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, TypedDict
|
|
|
|
if TYPE_CHECKING:
|
|
from collections.abc import Sequence
|
|
|
|
from duckdb import Expression
|
|
|
|
|
|
class WindowExpressionKwargs(TypedDict, total=False):
|
|
partition_by: Sequence[str | Expression]
|
|
order_by: Sequence[str | Expression]
|
|
rows_start: int | None
|
|
rows_end: int | None
|
|
descending: Sequence[bool]
|
|
nulls_last: Sequence[bool]
|
|
ignore_nulls: bool
|