TenantAtlas/apps/platform/.pnpm-store/v10/files/4e/82d332f1c52e5d70335a4d994470051e84abeed52740a11fd9290dcd7b67dac8bd1860ab56e3d39c5c3c81eb9ab1ef06a4110149cd73f11b786f3500f85f27
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

9 lines
476 B
Plaintext

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