TenantAtlas/apps/platform/.pnpm-store/v10/files/3e/ec62f76a165378952e3311dd775ef80ca1502c5ffb47983e9e7509185379617bf9337130f979850b4af343a4cbb270697233f5ee22961612df1747598158cd
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

10 lines
467 B
Plaintext

import type { SQL, SQLWrapper } from "../sql/sql.js";
import type { SQLiteColumn } from "./columns/index.js";
export * from "../sql/expressions/index.js";
export declare function concat(column: SQLiteColumn | SQL.Aliased, value: string | SQLWrapper): SQL;
export declare function substring(column: SQLiteColumn | SQL.Aliased, { from, for: _for }: {
from?: number | SQLWrapper;
for?: number | SQLWrapper;
}): SQL;
export declare function rowId(): SQL<number>;