Barrel export for the typed SQL function-builder library.
Lets callers do import { rowNumber, jsonExtract, fullTextMatch } from 'prorm'
instead of hand-writing raw SQL fragments.
Explicit (not export *) because several of these modules independently
declare their own local SqlExpr type alias (same shape, different
files) - re-exporting all three under one name is ambiguous.
Barrel export for the typed SQL function-builder library. Lets callers do
import { rowNumber, jsonExtract, fullTextMatch } from 'prorm'instead of hand-writing raw SQL fragments.Explicit (not
export *) because several of these modules independently declare their own localSqlExprtype alias (same shape, different files) - re-exporting all three under one name is ambiguous.