UNPKG

nodejs-polars

Version:

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

9 lines (8 loc) 281 B
import type { DateFunctions } from "../../shared_traits"; import { type Expr } from "../expr"; /** * DateTime functions for Lazy dataframes */ export interface ExprDateTime extends DateFunctions<Expr> { } export declare const ExprDateTimeFunctions: (_expr: any) => ExprDateTime;