Adding all project files
This commit is contained in:
parent
6c9e127bdc
commit
cd4316ad0f
42289 changed files with 8009643 additions and 0 deletions
18
venv/Lib/site-packages/narwhals/_duckdb/typing.py
Normal file
18
venv/Lib/site-packages/narwhals/_duckdb/typing.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue