UNPKG

nodejs-polars

Version:

Polars: Blazingly fast DataFrames in Rust, Python, Node.js, R and SQL

9 lines (8 loc) 260 B
import type { ListFunctions } from "../../shared_traits"; import { Expr } from "../expr"; /** * List functions for Lazy dataframes */ export interface ExprList extends ListFunctions<Expr> { } export declare const ExprListFunctions: (_expr: any) => ExprList;