Files
klz-cables.com/.pnpm-store/v10/files/3e/ec62f76a165378952e3311dd775ef80ca1502c5ffb47983e9e7509185379617bf9337130f979850b4af343a4cbb270697233f5ee22961612df1747598158cd
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01: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>;