CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
expressions.d.ts10 linesDownload Raw Back to sqlite-core
1import type { SQL, SQLWrapper } from "../sql/sql.js";2import type { SQLiteColumn } from "./columns/index.js";3export * from "../sql/expressions/index.js";4export declare function concat(column: SQLiteColumn | SQL.Aliased, value: string | SQLWrapper): SQL;5export declare function substring(column: SQLiteColumn | SQL.Aliased, { from, for: _for }: {6    from?: number | SQLWrapper;7    for?: number | SQLWrapper;8}): SQL;9export declare function rowId(): SQL<number>;10