CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

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